20 lines
939 B
Docker
20 lines
939 B
Docker
FROM node:20.10-alpine3.18 as build
|
|
|
|
RUN apk update && rm -rf /var/cache/apk/*
|
|
WORKDIR /usr/app
|
|
COPY . .
|
|
|
|
RUN npm config set -- //penahub.gitlab.yandexcloud.net/api/v4/packages/npm/:_authToken=glpat-JL_7wSM1QpW7xGfd-oWX
|
|
RUN npm config set -- //penahub.gitlab.yandexcloud.net/api/v4/projects/43/packages/npm/:_authToken=glpat-JL_7wSM1QpW7xGfd-oWX
|
|
RUN npm config set @frontend:registry https://penahub.gitlab.yandexcloud.net/api/v4/packages/npm/
|
|
RUN yarn config set '//penahub.gitlab.yandexcloud.net/api/v4/packages/npm/:_authToken' "glpat-JL_7wSM1QpW7xGfd-oWX"
|
|
RUN yarn config set '//penahub.gitlab.yandexcloud.net/api/v4/projects/:_authToken' "glpat-JL_7wSM1QpW7xGfd-oWX"
|
|
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
|