mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
6fbb77d65a
1. Introduce NPM_REGISTRY in Makefile to support npm registry configuration when build portal image. 2. Install npm pkgs before copy portal src so that build cache works for npm install in portal image. Signed-off-by: He Weiwei <hweiwei@vmware.com>
51 lines
1.5 KiB
Docker
51 lines
1.5 KiB
Docker
FROM node:10.15.0 as nodeportal
|
|
|
|
WORKDIR /build_dir
|
|
|
|
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
|
|
COPY ./docs/swagger.yaml /build_dir
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends python-yaml=3.12-1 \
|
|
&& python -c 'import sys, yaml, json; y=yaml.load(sys.stdin.read()); print json.dumps(y)' < swagger.yaml > swagger.json \
|
|
&& npm install
|
|
|
|
COPY ./LICENSE /build_dir
|
|
COPY src/portal /build_dir
|
|
|
|
RUN ls -la \
|
|
&& npm run build_lib \
|
|
&& npm run link_lib \
|
|
&& node --max_old_space_size=8192 'node_modules/@angular/cli/bin/ng' build --prod
|
|
|
|
|
|
FROM photon:2.0
|
|
|
|
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
|
|
COPY --from=nodeportal /build_dir/LICENSE /usr/share/nginx/html
|
|
|
|
COPY make/photon/portal/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
RUN tdnf install -y nginx sudo >> /dev/null \
|
|
&& ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log \
|
|
&& groupadd -r -g 10000 nginx && useradd --no-log-init -r -g 10000 -u 10000 nginx \
|
|
&& chown -R nginx:nginx /etc/nginx \
|
|
&& tdnf clean all
|
|
|
|
EXPOSE 8080
|
|
VOLUME /var/cache/nginx /var/log/nginx /run
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080 || exit 1
|
|
USER nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|
|
|