server_home/Dockerfile

18 lines
306 B
Docker
Raw Normal View History

2024-05-30 16:44:57 +00:00
FROM node:20.10.0-slim
WORKDIR /usr/src/app
COPY package*.json ./
2024-07-12 15:04:16 +00:00
RUN npm install serve -g
# Assuming build will be used for release, not development; otherwise, remove the production-only flag.
RUN npm install --only=production
2024-05-30 16:44:57 +00:00
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["serve", "-s", "build"]