summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJesper Jensen <jesper@jnsn.dev>2025-07-18 15:30:03 +0200
committerJesper Jensen <jesper@jnsn.dev>2025-07-18 16:07:18 +0200
commit0038aaf1b2ca3dd99c166b428b811fc0b76c39b3 (patch)
tree24e56d905121eb926badb584ad3f47897fc25ab4 /Dockerfile
parent70f7f2ec889c82a38328ea22b3d0bb60ce58410f (diff)
Upgrade alpine
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 9b25510..9ead15b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
-FROM docker.io/alpine:3.21 AS build
+FROM registry.hub.docker.com/library/alpine:3.22 AS build
-RUN apk add --no-cache make gcc musl-dev cmake libmicrohttpd-dev ruby
+RUN apk add --no-cache curl-dev libcurl make gcc musl-dev cmake libmicrohttpd-dev ruby
COPY . /app
WORKDIR /app
@@ -12,7 +12,7 @@ RUN cd thirdparty/prometheus-client-c && \
RUN make test dht
-FROM docker.io/alpine:3.21
+FROM registry.hub.docker.com/library/alpine:3.22
RUN apk add --no-cache libmicrohttpd
COPY --from=build /usr/local/lib/libprom.so /usr/lib/libprom.so