Update Dockerfile
This commit is contained in:
parent
9e62422db6
commit
371dd4baa0
1 changed files with 9 additions and 2 deletions
11
Dockerfile
11
Dockerfile
|
@ -1,2 +1,9 @@
|
|||
FROM golang:onbuild
|
||||
EXPOSE 8080
|
||||
FROM golang AS build-env
|
||||
|
||||
RUN go get -u github.com/esrrhs/pingtunnel
|
||||
RUN go get -u github.com/esrrhs/pingtunnel/...
|
||||
RUN go install github.com/esrrhs/pingtunnel
|
||||
|
||||
FROM debian
|
||||
COPY --from=build-env /go/bin/pingtunnel .
|
||||
WORKDIR ./
|
||||
|
|
Loading…
Add table
Reference in a new issue