From 2498e82aca4e369909cce9599e02cff956d048b3 Mon Sep 17 00:00:00 2001
From: Jan Bessler <jan.bessler@d-velop.de>
Date: Mon, 29 Jul 2024 14:23:55 +0200
Subject: [PATCH] removed minor versions from images

---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index fe69ce8..93d378c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.22.3-alpine AS build_deps
+FROM golang:1.22-alpine AS build_deps
 
 RUN apk add --no-cache git
 
@@ -15,7 +15,7 @@ COPY . .
 
 RUN CGO_ENABLED=0 go build -o webhook -ldflags '-w -extldflags "-static"' .
 
-FROM alpine:3.20.0
+FROM alpine:3.20
 
 RUN apk add --no-cache ca-certificates