From 2b6885055b7a59033214138c569f89d7c3a9427b Mon Sep 17 00:00:00 2001 From: ahoemann Date: Thu, 23 Jan 2025 07:17:21 +0000 Subject: [PATCH] fix: syntax --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 4486b16..d8812f0 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 --no-cache-dir-r requirements.txt +RUN /opt/.venv/bin/pip install --no-cache-dir -r requirements.txt RUN apk del git EXPOSE 8080