Skip to content

Commit

Permalink
Update go versions and docker/image versions (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
RTann authored Jun 4, 2021
1 parent 959a527 commit a620e9c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion images/Dockerfile.collector
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM circleci/golang:1.16.2-buster
FROM circleci/golang:1.16.4-buster

USER 0

Expand Down
8 changes: 4 additions & 4 deletions images/Dockerfile.jenkins-plugin
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:20.04

# This line makes sure that piped commands in RUN instructions exit early.
# This should not affect use in CircleCI because Circle doesn't use
Expand All @@ -11,14 +11,14 @@ RUN set -ex \
&& apt-get update \
&& apt-get install --no-install-recommends -y \
curl \
ca-certificates=20180409 \
ca-certificates \
git \
openjdk-8-jdk-headless \
maven \
unzip \
openssh-client \
sudo \
wget=1.19.4-1ubuntu2.2 \
wget \
zip \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -35,7 +35,7 @@ RUN set -ex \
&& echo 'circleci ALL=NOPASSWD: ALL' > /etc/sudoers.d/50-circleci

# Install docker binary
ARG DOCKER_VERSION=18.06.1-ce
ARG DOCKER_VERSION=20.10.6
RUN set -ex \
&& DOCKER_URL="https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz" \
&& echo Docker URL: $DOCKER_URL \
Expand Down
4 changes: 2 additions & 2 deletions images/Dockerfile.rox
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ RUN set -ex \

# Install Go
# https://golang.org/dl/
ARG GOLANG_VERSION=1.16.4
ARG GOLANG_SHA256=7154e88f5a8047aad4b80ebace58a059e36e7e2e4eb3b383127a28c711b4ff59
ARG GOLANG_VERSION=1.16.5
ARG GOLANG_SHA256=b12c23023b68de22f74c0524f10b753e7b08b1504cb7e417eccebdd3fae49061
ENV GOPATH=/go
ENV PATH=$GOPATH/bin:/usr/local/go/bin:$PATH
RUN set -ex \
Expand Down

0 comments on commit a620e9c

Please sign in to comment.