saahildcom/Dockerfile

15 lines
278 B
Docker
Raw Permalink Normal View History

FROM node:20-alpine as builder
WORKDIR /app
COPY package*.json .
COPY yarn*.lock .
RUN yarn install
COPY . .
2024-09-07 02:52:58 +00:00
RUN yarn build:react
#Stage 2
FROM nginx:1.19.0
WORKDIR /usr/share/nginx/html
RUN rm -rf ./*
COPY --from=builder /app/build .
ENTRYPOINT ["nginx", "-g", "daemon off;"]