sshportal/Dockerfile

12 lines
354 B
Docker
Raw Normal View History

2017-11-02 16:18:43 +08:00
# build
FROM golang:1.9 as builder
COPY . /go/src/github.com/moul/sshportal
WORKDIR /go/src/github.com/moul/sshportal
2017-11-14 08:13:51 +08:00
RUN make _docker_install
2017-11-02 16:18:43 +08:00
# minimal runtime
FROM scratch
COPY --from=builder /go/bin/sshportal /bin/sshportal
ENTRYPOINT ["/bin/sshportal"]
CMD ["server"]