diff --git a/Dockerfile b/Dockerfile index 5928a5a..c4a9054 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ -FROM golang:1.13.7-alpine3.11 +FROM golang:1.13.15-buster WORKDIR /go/src/github.com/suyashkumar/ssl-proxy -RUN apk add --no-cache make git zip +RUN apt-get update \ + && apt-get -y install zip \ + && apt-get -y clean \ + && rm -Rf /var/lib/apt/lists/* RUN go get -u github.com/golang/dep/cmd/dep COPY . . RUN make