Dateien nach "/" hochladen

This commit is contained in:
2025-04-21 22:06:17 +00:00
commit 8fbfd7ffeb
2 changed files with 277 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# Basisimage
FROM node:20
# Arbeitsverzeichnis setzen
WORKDIR /app
# Dateien kopieren
COPY package*.json ./
RUN npm install
COPY . .
# Startbefehl
CMD ["node", "index.js"]