Update Dockerfile to change ownership command for app directory to verbose mode

This commit is contained in:
Daniel Chalef 2025-06-27 14:37:29 -07:00
parent fe50247638
commit 96454c5e63

View file

@ -37,7 +37,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
COPY graphiti_mcp_server.py ./
# Change ownership to app user
RUN chown -R app:app /app
RUN chown -Rv app:app /app
# Switch to non-root user
USER app