Update Dockerfile

Forgot -r flag
This commit is contained in:
g_it 2026-02-16 12:56:03 +01:00
commit dfe81a3564

View file

@ -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