Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -47,10 +47,10 @@ RUN mkdir -p /images
|
|
47 |
RUN chown appuser /images
|
48 |
|
49 |
# Create the 'logs' directory for app.log file
|
50 |
-
RUN mkdir -p /logs
|
51 |
|
52 |
# Assign the ownership of 'logs' to appuser
|
53 |
-
RUN chown appuser /logs
|
54 |
|
55 |
# Switch to the non-privileged user to run the application.
|
56 |
USER appuser
|
|
|
47 |
RUN chown appuser /images
|
48 |
|
49 |
# Create the 'logs' directory for app.log file
|
50 |
+
RUN mkdir -p /logs/app.log
|
51 |
|
52 |
# Assign the ownership of 'logs' to appuser
|
53 |
+
RUN chown appuser /logs/app.log
|
54 |
|
55 |
# Switch to the non-privileged user to run the application.
|
56 |
USER appuser
|