mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 19:50:05 +01:00
7238efd9ae
This commit doesn't integrate redis. No change to makefile b/c it should work once the temporary jobservice_v2 folder is renamed to jobservice.
14 lines
433 B
Docker
14 lines
433 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN mkdir /harbor/ \
|
|
&& tdnf distro-sync -y || echo \
|
|
&& tdnf install sudo -y >> /dev/null\
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 harbor && useradd --no-log-init -r -g 10000 -u 10000 harbor
|
|
|
|
COPY ./make/photon/jobservice/start.sh ./make/dev/jobservice/harbor_jobservice /harbor/
|
|
|
|
RUN chmod u+x /harbor/harbor_jobservice /harbor/start.sh
|
|
WORKDIR /harbor/
|
|
ENTRYPOINT ["/harbor/start.sh"]
|