From ad8da61dacfa5e6382c1b985e8284aea26c03251 Mon Sep 17 00:00:00 2001 From: Stefan Benten Date: Thu, 8 Oct 2020 20:59:05 +0200 Subject: [PATCH] cmd/satellite: Remove curl from Dockerfile Sadly the build process with this command is very, very flaky and often fails pulling down curl via apk. As we currently do not need it anyway, it is safe to remove. Change-Id: I8a396c560d61a7fe6324560152a68c07c6b31638 --- cmd/satellite/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/satellite/Dockerfile b/cmd/satellite/Dockerfile index 144cf87e8..a927bddca 100644 --- a/cmd/satellite/Dockerfile +++ b/cmd/satellite/Dockerfile @@ -28,5 +28,4 @@ COPY --from=ca-cert /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certifi COPY release/${TAG}/satellite_linux_${GOARCH:-amd64} /app/satellite COPY release/${TAG}/inspector_linux_${GOARCH:-amd64} /app/inspector COPY cmd/satellite/entrypoint /entrypoint -RUN apk add --no-cache curl ENTRYPOINT ["/entrypoint"]