Spaces:
Sleeping
Sleeping
changed dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -21,3 +21,9 @@ RUN pip install --no-cache-dir --prefer-binary -r requirements-spaces.txt
|
|
| 21 |
EXPOSE 7860
|
| 22 |
|
| 23 |
CMD ["python3", "app.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
EXPOSE 7860
|
| 22 |
|
| 23 |
CMD ["python3", "app.py"]
|
| 24 |
+
|
| 25 |
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 26 |
+
git \
|
| 27 |
+
pkg-config \
|
| 28 |
+
libsndfile1 \
|
| 29 |
+
&& rm -rf /var/lib/apt/lists/*
|