mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-09 12:10:08 +01:00
9d99dfa82b
This commit fixes #13287 to remove the usage of tilde as the $HOME is not available in some cases. More details see #13287 Signed-off-by: Daniel Jiang <jiangd@vmware.com>
23 lines
837 B
Docker
23 lines
837 B
Docker
ARG harbor_base_image_version
|
|
ARG harbor_base_namespace
|
|
FROM ${harbor_base_namespace}/harbor-core-base:${harbor_base_image_version}
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080/api/v2.0/ping || curl -k --fail -s https://127.0.0.1:8443/api/v2.0/ping || exit 1
|
|
COPY ./make/photon/common/install_cert.sh /harbor/
|
|
COPY ./make/photon/core/entrypoint.sh /harbor/
|
|
COPY ./make/photon/core/harbor_core /harbor/
|
|
COPY ./src/core/views /harbor/views
|
|
COPY ./make/migrations /harbor/migrations
|
|
COPY ./icons /harbor/icons
|
|
|
|
RUN chown -R harbor:harbor /etc/pki/tls/certs \
|
|
&& chown -R harbor:harbor /harbor/ \
|
|
&& chmod u+x /harbor/entrypoint.sh \
|
|
&& chmod u+x /harbor/install_cert.sh \
|
|
&& chmod u+x /harbor/harbor_core
|
|
|
|
WORKDIR /harbor/
|
|
USER harbor
|
|
ENTRYPOINT ["/harbor/entrypoint.sh"]
|
|
COPY make/photon/prepare/versions /harbor/
|