Neurolingua commited on
Commit
5b2ec93
1 Parent(s): 9aaa2f2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- RUN mkdir -p /code/uploads && \
17
- chmod 775 /code/uploads
 
 
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"]