mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 01:00:08 +01:00
53bd4d7897
Signed-off-by: Yogi_Wang <yawang@vmware.com>
45 lines
1.3 KiB
Docker
45 lines
1.3 KiB
Docker
FROM node:10.15.0 as nodeportal
|
|
|
|
COPY src/portal /portal_src
|
|
COPY ./docs/swagger.yaml /portal_src
|
|
COPY ./LICENSE /portal_src
|
|
|
|
WORKDIR /build_dir
|
|
|
|
RUN cp -r /portal_src/* /build_dir \
|
|
&& ls -la \
|
|
&& 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 \
|
|
&& npm run build_lib \
|
|
&& npm run link_lib \
|
|
&& npm run release
|
|
|
|
|
|
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;"]
|
|
|