hrms-exam/cms/Dockerfile

12 lines
267 B
Text
Raw Normal View History

2023-04-04 12:38:01 +07:00
# docker build . -t docker.frappet.com/demo/qualifying-exam-cms:latest
2023-03-14 13:47:44 +07:00
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"]