diff --git a/Dockerfile b/Dockerfile
index e7c5a05d8d417a9f4a69001914f0c87a0f6a5dea..16052856e2435a9a335c40a3fb64efd88b5a8aa1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.16.2 AS builder
+FROM golang:1.16.3 AS builder
 ENV APP_ROOT=/opt/app-root
 ENV GOPATH=$APP_ROOT
 
@@ -13,7 +13,7 @@ RUN go build ./cmd/rekor-server
 RUN CGO_ENABLED=0 go build -gcflags "all=-N -l" -o rekor-server_debug ./cmd/rekor-server
 
 # Multi-Stage production build
-FROM golang:1.16.2 as deploy
+FROM golang:1.16.3 as deploy
 
 # Retrieve the binary from the previous stage
 COPY --from=builder /opt/app-root/src/rekor-server /usr/local/bin/rekor-server