diff --git a/.circleci/config.yml b/.circleci/config.yml index e3207f4..20b05b3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: test: docker: - - image: golang:1.21.1 + - image: golang:1.21.2 steps: - checkout - run: diff --git a/Dockerfile b/Dockerfile index f3fa0f6..3e0457c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.1 as builder +FROM golang:1.21.2 as builder ARG VERSION COPY ./ /go/src/github.com/mikutas/grpc-go-helloworld/ RUN cd /go/src/github.com/mikutas/grpc-go-helloworld/ \