mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-04 08:03:37 +01:00
3d09089a9c
Make necessary change to make things work with photon 2.0 docker image. Remove distro-sync to mitigate the build issue and add `--pull` to docker build command to make sure the latest photon:2.0 will be pulled during build process. Signed-off-by: Daniel Jiang <jiangd@vmware.com>
15 lines
570 B
Docker
15 lines
570 B
Docker
FROM photon:2.0
|
|
|
|
RUN tdnf install -y shadow sudo \
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 notary \
|
|
&& useradd --no-log-init -r -g 10000 -u 10000 notary
|
|
COPY ./make/photon/notary/binary/notary-signer /bin/notary-signer
|
|
COPY ./make/photon/notary/binary/migrate /bin/migrate
|
|
COPY ./make/photon/notary/binary/migrations/ /migrations/
|
|
COPY ./make/photon/notary/signer-start.sh /bin/signer-start.sh
|
|
|
|
RUN chmod u+x /bin/notary-signer /migrations/migrate.sh /bin/migrate /bin/signer-start.sh
|
|
ENV SERVICE_NAME=notary_signer
|
|
ENTRYPOINT [ "/bin/signer-start.sh" ]
|