You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
319 B
Plaintext
17 lines
319 B
Plaintext
6 years ago
|
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" ]
|