summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
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