Skip to content
This repository has been archived by the owner on Feb 14, 2022. It is now read-only.

Commit

Permalink
Update to Go 1.16
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Jan 28, 2022
1 parent 46a31e2 commit a93d3c0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ aliases:
- image: dockereng/kube-compose-ci-golang
auth: *docker-login
public-golang: &public-golang
- image: circleci/golang:1.13.0
- image: circleci/golang:1.16
user: root

e2e-kind-steps: &e2e-kind-steps
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ WORKDIR /home/compose


FROM ${BUILD_BASE} AS build
ENV GO111MODULE=off

RUN apk add --no-cache \
coreutils \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.buildkit
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ USER compose
WORKDIR /home/compose

FROM ${BUILD_BASE} AS build
ENV GO111MODULE=off

RUN apk add --no-cache \
coreutils \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.debuggable
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ARG BUILD_BASE
ARG RUN_BASE

FROM ${BUILD_BASE} AS build
ENV GO111MODULE=off
RUN apk add --no-cache \
coreutils \
make \
Expand Down
6 changes: 3 additions & 3 deletions docker.Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
include common.mk

export BUILD_BASE_IMAGE = golang:1.13.0-alpine3.10
export TEST_BASE_IMAGE = golang:1.13.0
export RUN_BASE_IMAGE = alpine:3.10.2
export BUILD_BASE_IMAGE = golang:1.16.13-alpine3.14
export TEST_BASE_IMAGE = golang:1.16.13
export RUN_BASE_IMAGE = alpine:3.14
export KUBERNETES_VERSION ?= 1.16.1
KIND_VERSION ?= 0.5.1
IMAGES = ${IMAGE_REPO_PREFIX}controller ${IMAGE_REPO_PREFIX}controller-coverage ${IMAGE_REPO_PREFIX}e2e-tests ${IMAGE_REPO_PREFIX}e2e-benchmark ${IMAGE_REPO_PREFIX}api-server ${IMAGE_REPO_PREFIX}api-server-coverage ${IMAGE_REPO_PREFIX}installer
Expand Down
1 change: 1 addition & 0 deletions dockerfiles/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
ARG BUILD_BASE

FROM ${BUILD_BASE} as dev
ENV GO111MODULE=off

RUN apk add --no-cache \
bash \
Expand Down

0 comments on commit a93d3c0

Please sign in to comment.