fix dockerfile

This commit is contained in:
Suchin Sapphasitthatha 2024-12-16 19:37:52 +07:00
parent 52e9bfb4f2
commit c8f1a416d3

View file

@ -1,5 +1,5 @@
# docker build . -t docker.frappet.com/demo/fe:latest
FROM node:20-alpine as build-stage
FROM node:20-alpine AS build-stage
WORKDIR /app
COPY package*.json ./
RUN npm install
@ -7,15 +7,14 @@ COPY ./ .
RUN npm run build
FROM nginx as production-stage
FROM nginx AS production-stage
RUN mkdir /app
COPY --from=build-stage /app/dist /app
COPY nginx.conf /etc/nginx/nginx.conf
COPY docker/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;"]