mirror of
https://github.com/moul/sshportal.git
synced 2025-01-12 02:17:40 +08:00
10 lines
327 B
Docker
10 lines
327 B
Docker
# build
|
|
FROM golang:1.9 as builder
|
|
COPY . /go/src/github.com/moul/sshportal
|
|
WORKDIR /go/src/github.com/moul/sshportal
|
|
RUN make _docker_install
|
|
|
|
# minimal runtime
|
|
FROM scratch
|
|
COPY --from=builder /go/bin/sshportal /bin/sshportal
|
|
ENTRYPOINT ["/bin/sshportal"]
|