From 6ed6c495d71c17800e6235bd12a552ec299bc809 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Sun, 2 Oct 2022 15:38:26 -0400 Subject: [PATCH] Remove build-deps from container post-build --- Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 690a5d7..b8a2534 100644 --- a/Containerfile +++ b/Containerfile @@ -16,7 +16,7 @@ RUN cp target/release/haunter /usr/local/bin/haunter WORKDIR /var/lib/haunter RUN rm -rf /src # Other cleanup -# RUN apt-get purge cargo -y -# RUN apt-get autoremove --purge -y -# RUN apt-get clean +RUN apt-get purge cargo pkg-config build-essential -y +RUN apt-get autoremove --purge -y +RUN apt-get clean CMD /usr/local/bin/haunter \ No newline at end of file