Skip to content

Commit

Permalink
Update Go dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Dec 4, 2021
1 parent 1a900c8 commit ab8bce2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down
4 changes: 2 additions & 2 deletions arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down
4 changes: 2 additions & 2 deletions armv6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down
4 changes: 2 additions & 2 deletions armv7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.9
RUN gem install rails:6.1.4.1 && gem cleanup

# Install golang
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.3-r0 openssl=1.1.1l-r7 \
RUN apk add --no-cache --virtual .build-deps gcc=10.3.1_git20211027-r0 musl-dev=1.2.2-r7 go=1.17.4-r0 openssl=1.1.1l-r7 \
&& rm -rf /var/cache/apk/* \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.3.src.tar.gz \
&& curl -sSL -o go.tar.gz https://golang.org/dl/go1.17.4.src.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz && rm go.tar.gz
WORKDIR /usr/local/go/src/
RUN ./make.bash && apk del .build-deps
Expand Down

0 comments on commit ab8bce2

Please sign in to comment.