aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 9c4a27a..5fa5231 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,7 @@
FROM marketplace.gcr.io/google/debian11 AS build
-ENV BUILD_DEPS 'curl git gcc patch libc6-dev ca-certificates build-essential pkg-config'
+#ENV BUILD_DEPS 'curl git gcc patch libc6-dev ca-certificates build-essential pkg-config'
+ENV BUILD_DEPS 'ca-certificates git curl'
RUN apt-get update && apt-get install -y ${BUILD_DEPS} --no-install-recommends
ENV GOPATH=/go
@@ -8,7 +9,7 @@ ENV GOROOT_BOOTSTRAP=/usr/local/go-bootstrap
RUN curl -sSL https://dl.google.com/go/go1.17.2.linux-amd64.tar.gz -o /tmp/go.tar.gz
RUN mkdir -p $GOROOT_BOOTSTRAP
RUN tar --strip=1 -C $GOROOT_BOOTSTRAP -xzf /tmp/go.tar.gz
-RUN $GOROOT_BOOTSTRAP/bin/go install golang.org/dl/gotip@latest
+#RUN $GOROOT_BOOTSTRAP/bin/go install golang.org/dl/gotip@latest
#RUN /go/bin/gotip download
RUN mkdir -p /workdir