mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-01 14:44:00 +01:00
4eba01fc31
Signed-off-by: Yan <wangyan@vmware.com>
17 lines
626 B
Docker
17 lines
626 B
Docker
FROM 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 ./make/photon/notary/binary/notary-server /bin/notary-server
|
|
COPY ./make/photon/notary/binary/migrate /bin/migrate
|
|
COPY ./make/photon/notary/binary/migrations/ /migrations/
|
|
COPY ./make/photon/notary/server-start.sh /bin/server-start.sh
|
|
RUN chmod u+x /bin/notary-server /migrations/migrate.sh /bin/migrate /bin/server-start.sh
|
|
ENV SERVICE_NAME=notary_server
|
|
ENTRYPOINT [ "/bin/server-start.sh" ]
|