Skip to content

Commit

Permalink
Remove -stretch
Browse files Browse the repository at this point in the history
Support got dropped by golang containers
  • Loading branch information
jmattheis committed Sep 12, 2020
1 parent 3cc7877 commit 556acbb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.linux-386
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GO_VERSION
FROM golang:$GO_VERSION-stretch
FROM golang:$GO_VERSION
RUN \
apt-get update && \
apt-get install -y libc6-dev-i386
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.linux-amd64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GO_VERSION
FROM golang:$GO_VERSION-stretch
FROM golang:$GO_VERSION

ENV CGO_ENABLED=1
ENV GOOS=linux
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.linux-arm-7
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GO_VERSION
FROM golang:$GO_VERSION-stretch
FROM golang:$GO_VERSION
RUN \
apt-get update && \
apt-get install -y gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.linux-arm64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GO_VERSION
FROM golang:$GO_VERSION-stretch
FROM golang:$GO_VERSION
RUN \
apt-get update && \
apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.windows-386
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GO_VERSION
FROM golang:$GO_VERSION-stretch
FROM golang:$GO_VERSION
RUN \
apt-get update && \
apt-get install -y mingw-w64
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.windows-amd64
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG GO_VERSION
FROM golang:$GO_VERSION-stretch
FROM golang:$GO_VERSION
RUN \
apt-get update && \
apt-get install -y mingw-w64
Expand Down

0 comments on commit 556acbb

Please sign in to comment.