Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -4,4 +4,5 @@ COPY ./requirements.txt /code/requirements.txt
|
|
4 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
5 |
COPY . .
|
6 |
RUN mkdir samples
|
|
|
7 |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "xtts:app"]
|
|
|
4 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
5 |
COPY . .
|
6 |
RUN mkdir samples
|
7 |
+
RUN chmod +x ./ffmpeg
|
8 |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "xtts:app"]
|