mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-09 23:39:40 +00:00
14 lines
278 B
Docker
14 lines
278 B
Docker
FROM node:20-alpine as builder
|
|
WORKDIR /app
|
|
COPY package*.json .
|
|
COPY yarn*.lock .
|
|
RUN yarn install
|
|
COPY . .
|
|
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;"]
|