From 7a585da91ba22f9c072e2235e0fdde223edfb6b6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 21:45:56 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.21.3 --- .circleci/config.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 97c657e..4dcefca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: test: docker: - - image: golang:1.21.2 + - image: golang:1.21.3 steps: - checkout - run: diff --git a/Dockerfile b/Dockerfile index eaf3294..bb772b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.2 as builder +FROM golang:1.21.3 as builder ARG VERSION COPY ./ /go/src/github.com/mikutas/grpc-go-helloworld/ RUN cd /go/src/github.com/mikutas/grpc-go-helloworld/ \