From c2a659286ea98678a23244e69f574db60fc3e276 Mon Sep 17 00:00:00 2001 From: cytopia Date: Tue, 24 Mar 2020 10:49:55 +0100 Subject: [PATCH] Fix requirements --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3ac3ea3..825dcbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,9 @@ LABEL "org.opencontainers.image.title"="linkcheck ${VERSION}" LABEL "org.opencontainers.image.description"="linkcheck ${VERSION}" RUN set -x \ - && apk add --no-cache bash + && apk add --no-cache \ + bash \ + curl COPY --from=builder /usr/bin/linkcheck /usr/bin/linkcheck WORKDIR /data ENTRYPOINT ["linkcheck"]