mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-09 04:01:14 +01:00
beefb40d0d
1> Update Notary server image to vmware/photon 2> Update NOtary signer image to vmware/photon 3> update oss package to latest
12 lines
269 B
Docker
12 lines
269 B
Docker
FROM vmware/photon:1.0
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf erase vim -y \
|
|
&& tdnf clean all
|
|
COPY ./binary/notary-server /bin/notary-server
|
|
COPY ./migrate /bin/migrate
|
|
COPY ./migrations/ /migrations/
|
|
|
|
ENV SERVICE_NAME=notary_server
|
|
ENTRYPOINT [ "notary-server" ]
|