From dfe81a3564d799e7aa26a8ef6d68b2aea29c18e8 Mon Sep 17 00:00:00 2001 From: g_it Date: Mon, 16 Feb 2026 12:56:03 +0100 Subject: [PATCH] Update Dockerfile Forgot -r flag --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ffebae7..7317741 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.13-slim AS builder WORKDIR /app COPY requirements.txt . -RUN pip install --no-cache-dir ./requirements.txt +RUN pip install --no-cache-dir -r ./requirements.txt RUN zensical build FROM caddy:alpine