feat(web-app): create docker file for the docker-compose

This commit is contained in:
fastium
2025-05-14 17:44:32 +02:00
parent 899592b493
commit f70a59f65a

11
web-app/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:22.15-slim
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 8080
CMD ["npm", "run", "serve"]