Skip to content

Commit 725787f

Browse files
committed
Updated golang versions
1 parent 8a40199 commit 725787f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22
jobs:
33
test:
44
docker:
5-
- image: circleci/golang:1.14
5+
- image: cimg/go:1.17
66
working_directory: ~/golang-example-app
77
steps:
88
- checkout
@@ -17,7 +17,7 @@ jobs:
1717
command: go test ./...
1818
build:
1919
docker:
20-
- image: circleci/golang:1.14
20+
- image: cimg/go:1.17
2121
working_directory: ~/golang-example-app
2222
steps:
2323
- checkout

docker/app/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16.2-alpine3.13 as builder
1+
FROM golang:1.17.9-alpine3.15 as builder
22

33
RUN apk add --update make \
44
&& rm -rf /tmp/* \

0 commit comments

Comments
 (0)