Skip to content

Commit

Permalink
Update Dockerfiles to use go v1.21 base images
Browse files Browse the repository at this point in the history
  • Loading branch information
pkqk committed Feb 1, 2024
1 parent 7e44baa commit 303ed0f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ALPINE_VERSION=3.18
ARG GO_VERSION=1.20
ARG GO_VERSION=1.21

FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder

Expand Down
2 changes: 1 addition & 1 deletion examples/gqlgen-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine3.18
FROM golang:1.21-alpine3.18

ENV CGO_ENABLED=0

Expand Down
2 changes: 1 addition & 1 deletion examples/graph-gophers-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine3.18
FROM golang:1.21-alpine3.18

ENV CGO_ENABLED=0

Expand Down
2 changes: 1 addition & 1 deletion examples/slow-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine3.18
FROM golang:1.21-alpine3.18

ENV CGO_ENABLED=0

Expand Down

0 comments on commit 303ed0f

Please sign in to comment.