Skip to content

Commit

Permalink
fix: Dockerfile update to give ownership to appuser of venv (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carson-Shaar authored Oct 18, 2024
1 parent ddb5af7 commit 4902cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN rm -rf /app/*
# Create a non-root user
RUN groupadd -r -g 1001 appuser && \
useradd -r -u 1001 -g appuser -d /app appuser && \
chown -R appuser:appuser /app
chown -R appuser:appuser /app /venv

USER appuser

Expand Down

0 comments on commit 4902cfc

Please sign in to comment.