From d0af0185104570a5eb73eca02dfa7fd9b269c7ad Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Mon, 24 Mar 2025 12:43:34 +0100 Subject: [PATCH] Fix dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6accf1b..752719c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.1-alpine3.21 +FROM golang:1.24.1-alpine3.21 WORKDIR /app COPY go.mod go.sum ./ @@ -10,5 +10,4 @@ COPY templates ./templates COPY *.go ./ RUN go build -o /pcinv -RUN /pcinv --install CMD ["/pcinv"]