Skip to content

Commit df2527d

Browse files
committed
Upgraded Golang to 1.14
1 parent 4b408d2 commit df2527d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/golang:1.13-alpine AS builder
1+
FROM amd64/golang:1.14-alpine AS builder
22
RUN apk --update add --no-cache git
33
RUN export GOBIN=$HOME/work/bin
44
WORKDIR /go/src/app

Dockerfile.arm32v6

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RUN apk --update add --no-cache curl
33
RUN cd /tmp && \
44
curl -L https://github.com/balena-io/qemu/releases/download/v3.0.0%2Bresin/qemu-3.0.0+resin-arm.tar.gz | tar zxvf - -C . && mv qemu-3.0.0+resin-arm/qemu-arm-static .
55

6-
FROM arm32v6/golang:1.13-alpine AS builder
6+
FROM arm32v6/golang:1.14-alpine AS builder
77
COPY --from=qemu /tmp/qemu-arm-static /usr/bin/
88
RUN apk --update add --no-cache git
99
RUN export GOBIN=$HOME/work/bin

Dockerfile.arm32v7

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RUN apk --update add --no-cache curl
33
RUN cd /tmp && \
44
curl -L https://github.com/balena-io/qemu/releases/download/v3.0.0%2Bresin/qemu-3.0.0+resin-arm.tar.gz | tar zxvf - -C . && mv qemu-3.0.0+resin-arm/qemu-arm-static .
55

6-
FROM arm32v7/golang:1.13-alpine AS builder
6+
FROM arm32v7/golang:1.14-alpine AS builder
77
COPY --from=qemu /tmp/qemu-arm-static /usr/bin/
88
RUN apk --update add --no-cache git
99
RUN export GOBIN=$HOME/work/bin

Dockerfile.arm64v8

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RUN apk --update add --no-cache curl
33
RUN cd /tmp && \
44
curl -L https://github.com/balena-io/qemu/releases/download/v3.0.0%2Bresin/qemu-3.0.0+resin-aarch64.tar.gz | tar zxvf - -C . && mv qemu-3.0.0+resin-aarch64/qemu-aarch64-static .
55

6-
FROM arm64v8/golang:1.13-alpine AS builder
6+
FROM arm64v8/golang:1.14-alpine AS builder
77
COPY --from=qemu /tmp/qemu-aarch64-static /usr/bin/
88
RUN apk --update add --no-cache git
99
RUN export GOBIN=$HOME/work/bin

0 commit comments

Comments
 (0)