Skip to content

Commit

Permalink
Pin golang to 1.20.7 in Dockerfiles
Browse files Browse the repository at this point in the history
We suspect that 1.21.0 causes issues leading to tests getting stuck

Co-authored-by: Georgi Sabev <[email protected]>
  • Loading branch information
danail-branekov and georgethebeatle committed Aug 11, 2023
1 parent 292c9ba commit 4c9582d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.21.0 as builder
FROM golang:1.20.7 as builder

ARG version=dev

Expand Down
2 changes: 1 addition & 1 deletion api/remote-debug/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.21.0 as builder
FROM golang:1.20.7 as builder

ARG version=dev

Expand Down
2 changes: 1 addition & 1 deletion controllers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.21.0 as builder
FROM golang:1.20.7 as builder

ARG version=dev

Expand Down
2 changes: 1 addition & 1 deletion controllers/remote-debug/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:experimental
FROM golang:1.21.0 as builder
FROM golang:1.20.7 as builder

ARG version=dev

Expand Down

0 comments on commit 4c9582d

Please sign in to comment.