This commit is contained in:
Tomas Dvorak
2026-04-21 11:40:27 +02:00
parent 6e8fedf534
commit efcc157c67
2 changed files with 36 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]