2024-05-31 12:17:06 +00:00
|
|
|
FROM penahub.gitlab.yandexcloud.net:5050/devops/dockerhub-backup/node as build
|
2022-12-03 20:46:27 +00:00
|
|
|
|
2023-06-19 15:32:08 +00:00
|
|
|
RUN apk update && rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /usr/app
|
2023-06-19 15:50:12 +00:00
|
|
|
COPY . .
|
2023-06-19 15:32:08 +00:00
|
|
|
|
|
|
|
RUN yarn install --ignore-scripts --non-interactive --frozen-lockfile && yarn cache clean
|
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
|
2024-05-31 12:17:06 +00:00
|
|
|
FROM penahub.gitlab.yandexcloud.net:5050/devops/dockerhub-backup/nginx as result
|
2023-05-07 12:54:40 +00:00
|
|
|
WORKDIR /usr/share/nginx/html
|
2023-06-19 15:32:08 +00:00
|
|
|
COPY --from=build /usr/app/build/ /usr/share/nginx/html
|
2024-05-07 21:58:13 +00:00
|
|
|
COPY fallback.js /usr/share/nginx/html/fallback.js
|
2023-05-07 12:54:40 +00:00
|
|
|
COPY hub.conf /etc/nginx/conf.d/default.conf
|