mirror of
https://github.com/marcogll/soul23_placeholder_site_server.git
synced 2026-01-13 21:35:18 +00:00
16 lines
286 B
Docker
16 lines
286 B
Docker
FROM node:20-alpine
|
|
|
|
# Install only production dependencies
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
|
|
# npm install will run inside Coolify/Traefik containers where network access exists
|
|
RUN npm install --omit=dev
|
|
|
|
# Copy the rest of the repository
|
|
COPY . .
|
|
|
|
EXPOSE 3001
|
|
|
|
CMD ["npm", "start"]
|