From 6a9dbd7603fb1304d2632db942ed6a212772ab84 Mon Sep 17 00:00:00 2001 From: Kevin Whitaker Date: Sat, 3 Jan 2026 13:23:49 -0500 Subject: [PATCH] use system python and try permission fix --- Dockerfile | 3 --- start.sh | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 39518e7..fdcf1ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,9 +68,6 @@ WORKDIR /app/code/ # Install uv for the non-root user COPY --from=ghcr.io/astral-sh/uv:0.7.19 /uv /uvx /usr/local/bin/ -# Install Python -RUN uv python install 3.13 - # Install Python dependencies RUN uv sync --all-extras diff --git a/start.sh b/start.sh index b036ed2..7e6916d 100755 --- a/start.sh +++ b/start.sh @@ -5,7 +5,7 @@ mkdir -p /app/data/library /app/data/config /app/data/assets /app/data/resources mkdir -p /tmp/vite-temp # ensure that data directory is owned by 'cloudron' user -chown -R cloudron:cloudron /app/data +chown -R cloudron:cloudron /app/data /tmp/vite-temp cd /app/data