mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
12abeb0a36
1>Change the user from root to notary 2>Update the images.
17 lines
543 B
Docker
17 lines
543 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf erase vim -y \
|
|
&& tdnf install -y shadow sudo \
|
|
&& tdnf clean all \
|
|
&& groupadd -r -g 10000 notary \
|
|
&& useradd --no-log-init -r -g 10000 -u 10000 notary
|
|
COPY ./binary/notary-signer /bin/notary-signer
|
|
COPY ./migrate /bin/migrate
|
|
COPY ./migrations/ /migrations/
|
|
COPY ./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" ]
|