feat(web-app): create docker file for the docker-compose
This commit is contained in:
11
web-app/Dockerfile
Normal file
11
web-app/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:22.15-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN npm install
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
CMD ["npm", "run", "serve"]
|
||||
Reference in New Issue
Block a user