Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
|
@@ -13,6 +13,8 @@ RUN pip install --no-cache-dir -r /code/requirements.txt
|
|
| 13 |
|
| 14 |
# Copy the rest of the application code
|
| 15 |
COPY . /code
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
| 18 |
CMD ["python", "app.py"]
|
|
|
|
| 13 |
|
| 14 |
# Copy the rest of the application code
|
| 15 |
COPY . /code
|
| 16 |
+
|
| 17 |
+
RUN mkdir -p /code/uploads /code/speech && \
|
| 18 |
+
chmod 775 /code/uploads /code/speech
|
| 19 |
+
|
| 20 |
CMD ["python", "app.py"]
|