17 lines
No EOL
384 B
Docker
17 lines
No EOL
384 B
Docker
# docker build . -t docker.frappet.com/demo/qualifying-exam-cms:latest
|
|
FROM node:18 as build
|
|
WORKDIR /app
|
|
# optimize build speed by copy all .xx folder and
|
|
COPY *.json .
|
|
COPY *.*s .
|
|
RUN npm i
|
|
COPY static ./static
|
|
COPY src ./src
|
|
# RUN ls
|
|
RUN npm run build
|
|
FROM node:18-alpine
|
|
WORKDIR /app
|
|
COPY --from=build /app .
|
|
EXPOSE 80
|
|
ENV PORT=80
|
|
CMD ["node", "./build/index.js"] |