Fixing up Dockerfile.

This commit is contained in:
g_it 2026-02-16 12:49:21 +01:00
commit 5b9b95d954
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627

View file

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