Spaces:
Sleeping
Sleeping
added the uploads folder
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -22,6 +22,9 @@ COPY . .
|
|
22 |
# Set the working directory to /
|
23 |
WORKDIR /
|
24 |
|
|
|
|
|
|
|
25 |
# Install requirements.txt
|
26 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
27 |
|
|
|
22 |
# Set the working directory to /
|
23 |
WORKDIR /
|
24 |
|
25 |
+
RUN mkdir -p /uploads
|
26 |
+
RUN chmod 777 /uploads
|
27 |
+
|
28 |
# Install requirements.txt
|
29 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
30 |
|