Dockerfile hinzugefügt

This commit is contained in:
Chaotischer 2026-03-09 23:54:41 +01:00
parent 20f5b2dbd7
commit fccbf740c6
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:20-bookworm
&
RUN apt-get update
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
CMD ["npm", "run", "start"]