diff options
Diffstat (limited to 'telebot/Dockerfile')
-rw-r--r-- | telebot/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/telebot/Dockerfile b/telebot/Dockerfile index 8259880..134d6a5 100644 --- a/telebot/Dockerfile +++ b/telebot/Dockerfile @@ -1,6 +1,7 @@ FROM alpine:3.13 as builder RUN apk update && apk upgrade RUN apk add go git +ENV GOPROXY=https://goproxy.io COPY go.* /telebot/ RUN cd /telebot && go mod download COPY *.go /telebot/ |