diff options
author | terminaldweller <thabogre@gmail.com> | 2022-03-28 18:56:01 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-03-28 18:56:01 +0000 |
commit | e24a591310bba9cb94b2ebdd1e41c184131ae1a8 (patch) | |
tree | 86552f7e2d9ad06dec69e71925731f5f7ed72aa7 /telebot/Dockerfile | |
parent | half-updateds the readme (diff) | |
download | hived-e24a591310bba9cb94b2ebdd1e41c184131ae1a8.tar.gz hived-e24a591310bba9cb94b2ebdd1e41c184131ae1a8.zip |
added some security headers
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/ |