mirror of
https://github.com/hantsy/nestjs-rest-sample.git
synced 2025-12-08 20:36:27 +00:00
11 lines
230 B
Docker
11 lines
230 B
Docker
# Set nginx base image
|
|
FROM node:18
|
|
LABEL maintainer="Hantsy Bai"
|
|
WORKDIR /app
|
|
COPY ./dist ./dist
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
RUN npm ci --only=production --ignore-scripts
|
|
EXPOSE 3000
|
|
CMD ["node", "dist/main"]
|