mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-19 08:45:27 +01:00
6c664ee993
This commit update the base photon image from vmware/photon:1.0 to photon:1.0, per suggestion by photon team.
19 lines
586 B
Docker
19 lines
586 B
Docker
FROM photon:1.0
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf erase vim -y \
|
|
&& tdnf install sudo -y >> /dev/null\
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 harbor && useradd --no-log-init -r -g 10000 -u 10000 harbor \
|
|
&& mkdir /harbor/
|
|
|
|
HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080/api/ping || exit 1
|
|
COPY ./make/dev/ui/harbor_ui ./src/favicon.ico ./make/photon/ui/start.sh ./UIVERSION /harbor/
|
|
COPY ./src/ui/views /harbor/views
|
|
COPY ./src/ui/static /harbor/static
|
|
|
|
RUN chmod u+x /harbor/start.sh /harbor/harbor_ui
|
|
WORKDIR /harbor/
|
|
|
|
ENTRYPOINT ["/harbor/start.sh"]
|