mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
b015440074
The export is dynamical now because of introduce of internal TLS Signed-off-by: DQ <dengq@vmware.com>
24 lines
792 B
Docker
24 lines
792 B
Docker
ARG harbor_base_image_version
|
|
ARG harbor_base_namespace
|
|
FROM ${harbor_base_namespace}/harbor-chartserver-base:${harbor_base_image_version}
|
|
|
|
COPY ./make/photon/chartserver/binary/chartm /home/chart/
|
|
COPY ./make/photon/chartserver/docker-entrypoint.sh /home/chart/
|
|
COPY ./make/photon/common/install_cert.sh /home/chart/
|
|
|
|
RUN chown -R chart:chart /etc/pki/tls/certs \
|
|
&& chown -R chart:chart /home/chart \
|
|
&& chmod u+x /home/chart/chartm \
|
|
&& chmod u+x /home/chart/docker-entrypoint.sh \
|
|
&& chmod u+x /home/chart/install_cert.sh
|
|
|
|
USER chart
|
|
|
|
WORKDIR /home/chart
|
|
|
|
ENTRYPOINT ["./docker-entrypoint.sh"]
|
|
|
|
VOLUME ["/chart_storage"]
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --retries=3 CMD curl -sS http://127.0.0.1:9999/health || curl -k -sS https://127.0.0.1:9443/health || exit 1
|