From de6cc17b0c780b116211ded995eedcd311ab27ef Mon Sep 17 00:00:00 2001 From: Robert Lowry Date: Wed, 23 Oct 2019 10:39:17 -0500 Subject: [PATCH] make docker use curl --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ea91666..a3056f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM alpine:3.9 as stage0 ARG REPOSITORY=https://alpha.de.repo.voidlinux.org ARG ARCH=x86_64 COPY keys/* /target/var/db/xbps/keys/ -RUN apk add ca-certificates && \ - wget -O - ${REPOSITORY}/static/xbps-static-latest.$(uname -m)-musl.tar.xz | \ +RUN apk add ca-certificates curl && \ + curl ${REPOSITORY}/static/xbps-static-latest.$(uname -m)-musl.tar.xz | \ tar Jx && \ XBPS_ARCH=${ARCH} xbps-install.static -yMU \ --repository=${REPOSITORY}/current \