fix(docker): remove obsolete version attribute and add backend/frontend Dockerfiles

This commit is contained in:
DanielS
2026-08-19 00:14:45 +02:00
parent 7159698b7f
commit 63a9d05002
3 changed files with 16 additions and 2 deletions

5
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM node:20-alpine
WORKDIR /app
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev"]