Dockerized frontend
This commit is contained in:
parent
f4eeb11c68
commit
ad117b4d2c
5 changed files with 26 additions and 1 deletions
11
frontend/Dockerfile
Normal file
11
frontend/Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM node:18
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
RUN npm install
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
ENTRYPOINT ["npm", "run", "serve"]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue