From b75e83c6c1bf31f4bd2f448dd8fd57391419d7ea Mon Sep 17 00:00:00 2001 From: ahoemann Date: Thu, 16 Jan 2025 07:09:57 +0000 Subject: [PATCH] add: added no cache option --- Dockerfile => Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Dockerfile => Containerfile (85%) diff --git a/Dockerfile b/Containerfile similarity index 85% rename from Dockerfile rename to Containerfile index e2d6699..f44420d 100644 --- a/Dockerfile +++ b/Containerfile @@ -1,7 +1,7 @@ FROM alpine:latest WORKDIR /opt/ -RUN apk add git python3 +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