diff --git a/Dockerfile b/Dockerfile
index e9fb560..049c92b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ ARG DOCKER_GEN_VERSION=0.9.0
 ARG FOREGO_VERSION=v0.17.0
 
 # Use a specific version of golang to build both binaries
-FROM golang:1.20.4 as gobuilder
+FROM golang:1.20.6 as gobuilder
 
 # Build docker-gen from scratch
 FROM gobuilder as dockergen
diff --git a/Dockerfile.alpine b/Dockerfile.alpine
index 42c808b..a0cfac4 100644
--- a/Dockerfile.alpine
+++ b/Dockerfile.alpine
@@ -3,7 +3,7 @@ ARG DOCKER_GEN_VERSION=0.9.0
 ARG FOREGO_VERSION=v0.17.0
 
 # Use a specific version of golang to build both binaries
-FROM golang:1.20.4-alpine as gobuilder
+FROM golang:1.20.6-alpine as gobuilder
 RUN apk add --no-cache git musl-dev
 
 # Build docker-gen from scratch