Files
linkedin-text-formatter/Dockerfile
2026-04-12 08:54:19 +00:00

14 lines
343 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM node:20-alpine
WORKDIR /app
# Nur package.json zuerst npm install cached bleiben wenn sich nur Code ändert
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
# Danach erst den Rest kopieren (node_modules wird NICHT kopiert dank .dockerignore)
COPY server.js ./
COPY public ./public
EXPOSE 3000
CMD ["node", "server.js"]