aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arbiter/Dockerfile2
-rw-r--r--hived/Dockerfile2
-rw-r--r--telebot/Dockerfile2
3 files changed, 0 insertions, 6 deletions
diff --git a/arbiter/Dockerfile b/arbiter/Dockerfile
index 8901c8a..af0bb94 100644
--- a/arbiter/Dockerfile
+++ b/arbiter/Dockerfile
@@ -1,8 +1,6 @@
FROM alpine:3.18 as builder
-ENV GOPROXY=https://goproxy.io
RUN apk update && apk upgrade
RUN apk add go git
-ENV GOPROXY=https://goproxy.io
COPY go.* /arbiter/
RUN cd /arbiter && go mod download
COPY *.go /arbiter/
diff --git a/hived/Dockerfile b/hived/Dockerfile
index b736c7d..ed7c38d 100644
--- a/hived/Dockerfile
+++ b/hived/Dockerfile
@@ -1,8 +1,6 @@
FROM alpine:3.18 as builder
-ENV GOPROXY=https://goproxy.io
RUN apk update && apk upgrade
RUN apk add go git
-ENV GOPROXY=https://goproxy.io
COPY go.* /hived/
RUN cd /hived && go mod download
COPY *.go /hived/
diff --git a/telebot/Dockerfile b/telebot/Dockerfile
index 50ce2cc..cdf2a83 100644
--- a/telebot/Dockerfile
+++ b/telebot/Dockerfile
@@ -1,8 +1,6 @@
FROM alpine:3.18 as builder
-ENV GOPROXY=https://goproxy.io
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/