From cc053951b1682ddf2b413682db36a71742d712f8 Mon Sep 17 00:00:00 2001 From: Joel Krauska Date: Tue, 4 Nov 2025 20:16:41 -0800 Subject: [PATCH] make /app owned by ap0p --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 36f1581..1463cef 100644 --- a/Containerfile +++ b/Containerfile @@ -16,6 +16,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh \ && install -m 0755 /root/.local/bin/uv /usr/local/bin/uv WORKDIR /app +RUN chown -R ${APP_USER}:${APP_USER} /app # Copy deps first for caching COPY --chown=${APP_USER}:${APP_USER} pyproject.toml uv.lock* requirements*.txt ./