mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-03 01:00:08 +01:00
f8a8040c8f
Signed-off-by: Qian Deng <dengq@vmware.com>
15 lines
683 B
Docker
15 lines
683 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/migrate-patch /bin/migrate-patch
|
|
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/
|
|
|
|
RUN chmod +x /bin/notary-signer /migrations/migrate.sh /bin/migrate /bin/migrate-patch
|
|
ENV SERVICE_NAME=notary_signer
|
|
USER notary
|
|
CMD migrate-patch -database=${DB_URL} && /migrations/migrate.sh && /bin/notary-signer -config=/etc/notary/signer-config.postgres.json -logf=logfmt |