mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-01 21:47:57 +01:00
22ea7dd91f
add env file template for chart repo server in make/common/config/chartserver update the Makefiles to support build chart repo server add docker file and related build scripts for upstream chart server - chartmuseum update prepare to support generating chart server related configs add docker compose file for the chart server add build/install command options to install with/without chart repo server update install.sh to support chart repo server installation
24 lines
661 B
Docker
24 lines
661 B
Docker
FROM vmware/photon:1.0
|
|
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf erase vim -y \
|
|
&& tdnf install -y git shadow sudo bzr rpm xz python-xml >>/dev/null\
|
|
&& tdnf clean all \
|
|
&& mkdir /chartserver/ \
|
|
&& groupadd -r -g 10000 chartuser \
|
|
&& useradd --no-log-init -m -r -g 10000 -u 10000 chartuser
|
|
COPY ./binary/chartm /chartserver/
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
|
|
EXPOSE 9999
|
|
|
|
RUN chown -R 10000:10000 /chartserver \
|
|
&& chmod u+x /chartserver/chartm \
|
|
&& chmod u+x /docker-entrypoint.sh
|
|
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --retries=3 CMD curl -sS 127.0.0.1:9999/health || exit 1
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|