Update Dockerfile
Browse files- Dockerfile +0 -6
Dockerfile
CHANGED
|
@@ -1,13 +1,7 @@
|
|
| 1 |
FROM python:3.9
|
| 2 |
-
|
| 3 |
WORKDIR /app
|
| 4 |
-
|
| 5 |
COPY requirements.txt requirements.txt
|
| 6 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
-
|
| 8 |
COPY . .
|
| 9 |
-
|
| 10 |
-
# Permission fix for cache
|
| 11 |
RUN mkdir -p /app/voices && chmod 777 /app/voices
|
| 12 |
-
|
| 13 |
CMD ["python", "app.py"]
|
|
|
|
| 1 |
FROM python:3.9
|
|
|
|
| 2 |
WORKDIR /app
|
|
|
|
| 3 |
COPY requirements.txt requirements.txt
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 5 |
COPY . .
|
|
|
|
|
|
|
| 6 |
RUN mkdir -p /app/voices && chmod 777 /app/voices
|
|
|
|
| 7 |
CMD ["python", "app.py"]
|