21 lines
461 B
Docker
21 lines
461 B
Docker
# docker build . -t docker.frappet.com/demo/fe:latest
|
|
FROM node:lts as build-stage
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY ./ .
|
|
|
|
RUN npm run build
|
|
|
|
FROM nginx as production-stage
|
|
|
|
RUN mkdir /app
|
|
COPY --from=build-stage /app/dist /app
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod u+x /usr/local/bin/entrypoint.sh
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
|
CMD ["nginx", "-g", "daemon off;"]
|