From a472ea423e8a20102149b652bae16a17e3fe1eb0 Mon Sep 17 00:00:00 2001 From: chjmil Date: Mon, 9 Dec 2024 18:51:26 -0500 Subject: [PATCH] chore: linting fix Signed-off-by: chjmil --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bcd8e6cf..101e5ddf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN curl -sLO https://dl.k8s.io/release/v$kubectl_version/bin/linux/amd64/kubect # Build Skopeo from source since the version in the apt repository is outdated FROM golang:alpine3.20 AS golang ARG SKOPEO_VERSION=release-1.16 -RUN apk update && apk add git build-base containers-common bash btrfs-progs-dev glib-dev go go-md2man gpgme-dev libselinux-dev linux-headers lvm2-dev ostree-dev \ +RUN apk add --no-cache git build-base containers-common bash btrfs-progs-dev glib-dev go go-md2man gpgme-dev libselinux-dev linux-headers lvm2-dev ostree-dev \ && git clone https://github.com/containers/skopeo.git -b $SKOPEO_VERSION \ && DISABLE_DOCS=1 make -C skopeo bin/skopeo.linux.386