From 95d6497e93ee4118b86876d062b9fd81f1cd9684 Mon Sep 17 00:00:00 2001 From: ahoemann Date: Thu, 23 Jan 2025 07:16:57 +0000 Subject: [PATCH] add: removed caching from pip install --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 4ac1b83..4486b16 100644 --- a/Containerfile +++ b/Containerfile @@ -8,7 +8,7 @@ ENV DEBUG_MODE=False RUN apk add --no-cache git python3 RUN git clone https://git.adrianux.net/ahoemann/Adrianux.net.git /opt RUN python3 -m venv /opt/.venv -RUN /opt/.venv/bin/pip install -r requirements.txt +RUN /opt/.venv/bin/pip install --no-cache-dir-r requirements.txt RUN apk del git EXPOSE 8080