1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 02:47:56 +01:00

Remove cache after installing packages (#104)

This commit is contained in:
Jason N 2024-04-10 17:45:41 -04:00 committed by GitHub
parent 02c3b10f56
commit 8346576816
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,7 @@ VOLUME /build-container-installer/build
VOLUME /build-container-installer/repos
VOLUME /cache
RUN dnf install -y make && make install-deps
RUN dnf install -y make && make install-deps && dnf clean all
ENTRYPOINT ["/bin/bash", "/build-container-installer/entrypoint.sh"]