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

This commit is contained in:
fastium
2025-05-16 20:40:37 +02:00
parent 899592b493
commit f70a59f65a
+11
View File
@@ -0,0 +1,11 @@
FROM node:22.15-slim
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 8080
CMD ["npm", "run", "serve"]