mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-02 23:23:45 +01:00
2cedfff4b3
This change reworked the vmware/harbor-db image to build it on top of vmware/mariadb-photon. Also made minor change in the entrypoint script of mariadb image to execute upgrade script during bootstrap, and fix a file permission issue in the bootstrap scripts.
11 lines
257 B
Docker
11 lines
257 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN mkdir /harbor/ \
|
|
&& tdnf distro-sync -y || echo \
|
|
&& tdnf clean all
|
|
COPY ./make/dev/jobservice/harbor_jobservice /harbor/
|
|
|
|
RUN chmod u+x /harbor/harbor_jobservice
|
|
WORKDIR /harbor/
|
|
ENTRYPOINT ["/harbor/harbor_jobservice"]
|