mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-15 16:07:11 +08:00
vendor: initial vendor
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
16
vendor/github.com/theupdateframework/notary/escrow.Dockerfile
generated
vendored
Normal file
16
vendor/github.com/theupdateframework/notary/escrow.Dockerfile
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
FROM golang:1.10.1-alpine
|
||||
|
||||
ENV NOTARYPKG github.com/theupdateframework/notary
|
||||
|
||||
# Copy the local repo to the expected go path
|
||||
COPY . /go/src/${NOTARYPKG}
|
||||
|
||||
WORKDIR /go/src/${NOTARYPKG}
|
||||
|
||||
EXPOSE 4450
|
||||
|
||||
# Install escrow
|
||||
RUN go install ${NOTARYPKG}/cmd/escrow
|
||||
|
||||
ENTRYPOINT [ "escrow" ]
|
||||
CMD [ "-config=cmd/escrow/config.toml" ]
|
Reference in New Issue
Block a user