hrms-exam/cms/Dockerfile

12 lines
250 B
Text
Raw Normal View History

2023-03-14 13:47:44 +07:00
# docker build . -t registry.home.lan/demo/be2:latest
FROM node:18 as build
WORKDIR /app
COPY . .
RUN npm ci
RUN npm run build
FROM node:18-alpine
WORKDIR /app
COPY --from=build /app .
EXPOSE 80
ENV PORT=80
CMD ["node", "./build/index.js"]