implemented docker compose

This commit is contained in:
2025-08-18 16:02:11 +02:00
parent 69a2171479
commit 98c6545bae
2 changed files with 55 additions and 0 deletions

12
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8001
CMD ["npm", "run", "dev"]