2019-11-12 04:20:54 +01:00
|
|
|
ARG harbor_base_image_version
|
2019-03-27 03:47:07 +01:00
|
|
|
FROM node:10.15.0 as nodeportal
|
2018-09-04 12:14:40 +02:00
|
|
|
|
2019-08-01 05:37:18 +02:00
|
|
|
WORKDIR /build_dir
|
|
|
|
|
2019-10-10 09:29:50 +02:00
|
|
|
ARG npm_registry=https://registry.npmjs.org
|
|
|
|
ENV NPM_CONFIG_REGISTRY=${npm_registry}
|
|
|
|
|
|
|
|
COPY src/portal/package.json /build_dir
|
|
|
|
COPY src/portal/package-lock.json /build_dir
|
2019-12-09 11:48:10 +01:00
|
|
|
COPY ./api/harbor/swagger.yaml /build_dir
|
2019-09-05 09:13:13 +02:00
|
|
|
|
2023-05-08 14:06:46 +02:00
|
|
|
RUN npm install js-yaml@4.1.0 \
|
|
|
|
&& node -e "const yaml = require('js-yaml'); const fs = require('fs'); const swagger = yaml.load(fs.readFileSync('swagger.yaml', 'utf8')); fs.writeFileSync('swagger.json', JSON.stringify(swagger));" \
|
2019-10-10 09:29:50 +02:00
|
|
|
&& npm install
|
|
|
|
|
|
|
|
COPY ./LICENSE /build_dir
|
|
|
|
COPY src/portal /build_dir
|
|
|
|
|
|
|
|
RUN ls -la \
|
2019-08-01 05:37:18 +02:00
|
|
|
&& npm run build_lib \
|
|
|
|
&& npm run link_lib \
|
2019-11-06 09:37:21 +01:00
|
|
|
&& node --max_old_space_size=2048 'node_modules/@angular/cli/bin/ng' build --prod
|
2018-09-04 12:14:40 +02:00
|
|
|
|
2019-11-11 11:56:36 +01:00
|
|
|
FROM goharbor/harbor-portal-base:${harbor_base_image_version}
|
2018-09-04 12:14:40 +02:00
|
|
|
|
2019-07-22 08:21:28 +02:00
|
|
|
COPY --from=nodeportal /build_dir/dist /usr/share/nginx/html
|
|
|
|
COPY --from=nodeportal /build_dir/swagger.yaml /usr/share/nginx/html
|
|
|
|
COPY --from=nodeportal /build_dir/swagger.json /usr/share/nginx/html
|
2019-08-05 08:20:03 +02:00
|
|
|
COPY --from=nodeportal /build_dir/LICENSE /usr/share/nginx/html
|
2019-07-22 08:21:28 +02:00
|
|
|
|
|
|
|
COPY make/photon/portal/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
2019-08-01 10:02:08 +02:00
|
|
|
EXPOSE 8080
|
2018-09-04 12:14:40 +02:00
|
|
|
VOLUME /var/cache/nginx /var/log/nginx /run
|
|
|
|
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
|
2019-07-22 08:21:28 +02:00
|
|
|
HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080 || exit 1
|
2019-07-30 07:04:28 +02:00
|
|
|
USER nginx
|
2019-07-29 09:52:17 +02:00
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|
2018-09-04 12:14:40 +02:00
|
|
|
|