make /app owned by ap0p

This commit is contained in:
Joel Krauska
2025-11-04 20:16:41 -08:00
parent fcff4f5849
commit cc053951b1

View File

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