Neurolingua
commited on
Commit
•
5b2ec93
1
Parent(s):
9aaa2f2
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"]
|