Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -10,6 +10,8 @@ COPY requirements.txt .
|
|
| 10 |
# Install any needed packages specified in requirements.txt
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
|
|
|
|
|
|
| 13 |
# Copy the current directory contents into the container at /app
|
| 14 |
COPY . .
|
| 15 |
|
|
|
|
| 10 |
# Install any needed packages specified in requirements.txt
|
| 11 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
|
| 13 |
+
RUN chmod -R a+w /app
|
| 14 |
+
|
| 15 |
# Copy the current directory contents into the container at /app
|
| 16 |
COPY . .
|
| 17 |
|