mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
bfe4362a67
1. Change the Export CVE temporary file directory to /tmp. 2. Remove the scan data export volume in Dockerfile and docker-compose yaml. Fixes: #18067 Signed-off-by: chlins <chenyuzh@vmware.com>
25 lines
823 B
Docker
25 lines
823 B
Docker
ARG harbor_base_image_version
|
|
ARG harbor_base_namespace
|
|
FROM ${harbor_base_namespace}/harbor-jobservice-base:${harbor_base_image_version}
|
|
|
|
COPY ./make/photon/common/install_cert.sh /harbor/
|
|
COPY ./make/photon/jobservice/entrypoint.sh /harbor/
|
|
COPY ./make/photon/jobservice/harbor_jobservice /harbor/
|
|
|
|
|
|
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_jobservice
|
|
|
|
WORKDIR /harbor/
|
|
|
|
USER harbor
|
|
|
|
VOLUME ["/var/log/jobs/"]
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://localhost:8080/api/v1/stats || curl -sk --fail --key /etc/harbor/ssl/job_service.key --cert /etc/harbor/ssl/job_service.crt https://localhost:8443/api/v1/stats || exit 1
|
|
|
|
ENTRYPOINT ["/harbor/entrypoint.sh"]
|