Files
stupid-apis/Dockerfile
Maximilian Baum c0f81934be
All checks were successful
Build and Deploy / build (push) Successful in 43s
Build and Deploy / deploy (push) Successful in 25s
node upgrade
2026-04-02 10:44:30 +02:00

19 lines
256 B
Docker

# Basis-Image
FROM node:24.14
# Arbeitsverzeichnis
WORKDIR /app
# Paketdateien kopieren und Abhängigkeiten installieren
COPY package*.json ./
RUN npm install
# Quellcode kopieren
COPY . .
# Port exposen
EXPOSE 3000
# Startbefehl
CMD ["npm", "start"]