diff options
author | Matthew Lemon <y@yulqen.org> | 2024-04-24 14:32:54 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-04-24 14:32:54 +0100 |
commit | 93ed3ce7f5ccf326f61619d073e9be0e235843f5 (patch) | |
tree | 77ba702d47f149471a3261cc30079f3996d01060 /Dockerfile | |
parent | bb4afa6e315040e3aaa9a708d217d704880b784b (diff) |
Ensuring permissions set in final image for db purposes
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -26,6 +26,7 @@ COPY --from=builder /app /app # Install the required packages in the final stage RUN pip install -r requirements.txt +RUN chown -R 1001:0 /app # Set the appropriate user USER 1001 |