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