commit 6c81a85111e9cbe4618f71fd9f0fe932e811794b parent 3685706f79db42b2af2914ca7e850a5086834e15 Author: FIGBERT <figbert@figbert.com> Date: Mon, 23 May 2022 10:10:18 -0700 Properly pass --no-cache to apk Diffstat:
M | soju | | | 2 | +- |
M | stagit | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/soju b/soju @@ -1,4 +1,4 @@ FROM alpine:edge -RUN apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/edge/testing soju +RUN apk --no-cache add -X https://dl-cdn.alpinelinux.org/alpine/edge/testing soju ENTRYPOINT ["soju"] CMD ["-config", "/soju/config"] diff --git a/stagit b/stagit @@ -1,5 +1,5 @@ FROM nginx:alpine -RUN apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/edge/testing stagit +RUN apk --no-cache add -X https://dl-cdn.alpinelinux.org/alpine/edge/testing stagit ENTRYPOINT stagit-index /git/*/ > /usr/share/nginx/html/index.html && \ for dir in /git/*/; do \ r=$(basename "${dir}"); \