add Dockerfile and docker-compose.yml; remove README and executable

This commit is contained in:
2025-06-17 21:37:19 +02:00
parent f392eb3e3d
commit fe02505cc6
4 changed files with 34 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# Basis-Image
FROM node:18
# Arbeitsverzeichnis
WORKDIR /app
# Dependencies kopieren und installieren
COPY package*.json ./
RUN npm install
# App-Code kopieren
COPY . .
# Port definieren
EXPOSE 8956
# Startkommando
CMD ["node", "server.js"]