Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -10,6 +10,8 @@ COPY . /my_codes
|
|
| 10 |
# Install any needed packages specified in requirements.txt
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
|
|
|
|
|
|
| 13 |
WORKDIR /my_codes/app
|
| 14 |
|
| 15 |
RUN mkdir CACHE && chmod -R 777 CACHE
|
|
|
|
| 10 |
# Install any needed packages specified in requirements.txt
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
| 13 |
+
RUN chmod -R 777 /my_codes/app
|
| 14 |
+
|
| 15 |
WORKDIR /my_codes/app
|
| 16 |
|
| 17 |
RUN mkdir CACHE && chmod -R 777 CACHE
|