aboutsummaryrefslogtreecommitdiffstats
path: root/hived/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'hived/Dockerfile')
-rw-r--r--hived/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/hived/Dockerfile b/hived/Dockerfile
index bfeb2e8..20873f6 100644
--- a/hived/Dockerfile
+++ b/hived/Dockerfile
@@ -1,9 +1,9 @@
-FROM golang:1.22-alpine3.20 as builder
+FROM golang:1.24-alpine3.22 AS builder
COPY go.* /hived/
RUN cd /hived && go mod download
COPY *.go /hived/
RUN cd /hived && CGO_ENABLED=0 go build
-FROM alpine:3.20
+FROM alpine:3.22
COPY --from=builder /hived/hived /hived/
ENTRYPOINT ["/hived/hived"]