Skip to content

Commit

Permalink
Bump golang to 1.13.10
Browse files Browse the repository at this point in the history
Signed-off-by: Silvin Lubecki <[email protected]>
  • Loading branch information
silvin-lubecki committed Apr 21, 2020
1 parent f654a05 commit 37699db
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM dockercore/golang-cross:1.12.9@sha256:3ea9dcef4dd2c46d80445c0b22d6177817f4cfce22c523cc12a5a1091cb37705 AS cli-build
FROM dockercore/golang-cross:1.13.10@sha256:ad2725ac9af0273f1de9bb85e166084d5e8d915df334154fe9c8bd9af912a90d AS cli-build
ENV DISABLE_WARN_OUTSIDE_CONTAINER=1
ARG CLI_CHANNEL=stable
ARG CLI_VERSION=19.03.5

RUN apt-get install -y -q --no-install-recommends \
RUN apt-get update && apt-get install -y -q --no-install-recommends \
coreutils \
util-linux \
uuid-runtime
Expand All @@ -21,7 +21,7 @@ ARG GOPROXY
RUN make binary-windows

# main dev image
FROM golang:1.13.3 AS dev
FROM golang:1.13.10 AS dev

RUN apt-get update && apt-get install -y -q --no-install-recommends \
coreutils \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.invocation-image
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ALPINE_VERSION=3.10.3

FROM golang:1.13.2 AS build
FROM golang:1.13.10 AS build

RUN apt-get update -qq && apt-get install -y -q --no-install-recommends \
coreutils \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.lint
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ALPINE_VERSION=3.10
ARG GO_VERSION=1.12.9
ARG GO_VERSION=1.13.10

FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION}
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion docs/yaml/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12-alpine AS base
FROM golang:1.13-alpine AS base

ARG PROJECT=github.com/docker/app
ARG PROJECT_PATH=/go/src/${PROJECT}
Expand Down

0 comments on commit 37699db

Please sign in to comment.