From eca138486dfabd1a869c6c2d4631e477c1d09ab2 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Wed, 6 Mar 2024 10:04:52 -0600 Subject: [PATCH] move volume --- Containerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index e0a3663..55e6e06 100644 --- a/Containerfile +++ b/Containerfile @@ -17,12 +17,11 @@ COPY /Makefile /build-container-installer COPY /entrypoint.sh / WORKDIR /build-container-installer +VOLUME /build-container-installer/build +VOLUME /cache RUN dnf install -y make && make install-deps RUN ln -s ~/.local/share/containers/cache /cache/skopeo -VOLUME /build-container-installer/build -VOLUME /cache - ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]