2023-12-04 21:02:08 +00:00
|
|
|
FROM node:20.10-alpine3.18 as build
|
2023-07-01 15:45:44 +00:00
|
|
|
|
|
|
|
RUN apk update && rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN yarn install --ignore-scripts --non-interactive --frozen-lockfile && yarn cache clean
|
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
|
|
|
|
FROM nginx:latest as result
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
COPY --from=build /usr/app/build/ /usr/share/nginx/html
|
|
|
|
COPY hub.conf /etc/nginx/conf.d/default.conf
|