From 5b9b95d954e75e96426fc4dbfad7784457cbbe84 Mon Sep 17 00:00:00 2001 From: g_it Date: Mon, 16 Feb 2026 12:49:21 +0100 Subject: [PATCH] Fixing up Dockerfile. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a6d486..ffebae7 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ FROM python:3.13-slim AS builder WORKDIR /app COPY requirements.txt . -RUN pip install --no-cache-dir . -COPY . . +RUN pip install --no-cache-dir ./requirements.txt RUN zensical build FROM caddy:alpine