We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b202815 commit 11ef6bfCopy full SHA for 11ef6bf
Dockerfile
@@ -22,10 +22,14 @@ ARG snapshot_versions_type=prod
22
# certificate.
23
FROM docker.io/alpine:3.21.0@sha256:2c43f33bd1502ec7818bce9eea60e062d04eeadc4aa31cad9dabecb1e48b647b as snapshot-versions-getter-base
24
25
+# Remove the community repository. This is to ensure that we only rely on
26
+# packages with future availability.
27
+RUN sed -i /community/d /etc/apk/repositories && cat /etc/apk/repositories
28
+
29
# Production snapshot versions
30
FROM snapshot-versions-getter-base as snapshot-versions-getter-prod
31
-RUN apk add wget
32
+RUN apk add --no-cache wget
33
34
RUN wget --check-certificate https://delpa.org/snapshot_versions.json && \
35
wget --check-certificate https://delpa.org/snapshot_versions.json.sha256
0 commit comments