Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -9,6 +9,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
9 |
# Set the working directory in the container
|
10 |
WORKDIR /app
|
11 |
|
|
|
|
|
|
|
12 |
# Copy the requirements file first
|
13 |
COPY requirements.txt /app/
|
14 |
|
|
|
9 |
# Set the working directory in the container
|
10 |
WORKDIR /app
|
11 |
|
12 |
+
# Create the error.log file and set permissions
|
13 |
+
RUN touch /app/error.log && chmod 666 /app/error.log
|
14 |
+
|
15 |
# Copy the requirements file first
|
16 |
COPY requirements.txt /app/
|
17 |
|