mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-09 04:01:14 +01:00
6d7c028729
Refine the Dockerfile to remove temporary workarounds. Also fixes #3587, to make sure the configuration files of rsyslog can be read by uid 10000.
15 lines
540 B
Docker
15 lines
540 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN tdnf erase vim -y \
|
|
&& tdnf distro-sync -y \
|
|
&& tdnf install -y sudo \
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 harbor && useradd --no-log-init -r -g 10000 -u 10000 harbor \
|
|
&& mkdir /harbor/
|
|
COPY ./make/dev/adminserver/harbor_adminserver ./make/photon/adminserver/start.sh /harbor/
|
|
HEALTHCHECK CMD curl -s -o /dev/null -w "%{http_code}" 127.0.0.1:8080/api/configurations|grep 401
|
|
|
|
RUN chmod u+x /harbor/harbor_adminserver /harbor/start.sh
|
|
WORKDIR /harbor/
|
|
ENTRYPOINT ["/harbor/start.sh"]
|