mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-16 23:35:20 +01:00
0227a1315a
append chart server related config options to the supporting list of adminserver provide chart server related config access method in the API layer update prepare script and ui env template file to enable cache driver config for chart server API append flag info in the systeminfo API to indicate if chart server is deployed with Harbor refactor the response rewriting logic to return structual error object add api init method to initilizing objects required in API handlers chage owner of the storage folder update offline/online package scripts in Harbor-Util.robot
23 lines
653 B
Docker
23 lines
653 B
Docker
FROM 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"]
|