99i commited on
Commit
27e8ebc
·
verified ·
1 Parent(s): c4d8226

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -13
Dockerfile CHANGED
@@ -1,14 +1,15 @@
1
- FROM python:3.9-slim
2
-
3
- WORKDIR /app
4
-
5
- COPY requirements.txt .
6
- RUN pip install --no-cache-dir -r requirements.txt
7
-
8
- COPY . .
9
-
10
- RUN mkdir -p audio_files
11
-
12
- ENV TTS_HOST=${TTS_HOST}
13
-
 
14
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ FROM python:3.9-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
+
8
+ COPY . .
9
+
10
+ RUN mkdir -p audio_files
11
+ RUN chmod -r 777 audio_files
12
+
13
+ ENV TTS_HOST=${TTS_HOST}
14
+
15
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]