Spaces:
Configuration error
Configuration error
Delete Dockerfile
Browse files- Dockerfile +0 -15
Dockerfile
DELETED
|
@@ -1,15 +0,0 @@
|
|
| 1 |
-
FROM python:3.10-slim
|
| 2 |
-
ENV NUMBA_CACHE_DIR=/tmp
|
| 3 |
-
ENV HF_HOME=/tmp/.cache/huggingface
|
| 4 |
-
ENV MPLCONFIGDIR=/tmp/.config/matplotlib
|
| 5 |
-
WORKDIR /app
|
| 6 |
-
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 7 |
-
build-essential git git-lfs ffmpeg libsndfile1 \
|
| 8 |
-
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
-
RUN git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git .
|
| 10 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
-
RUN pip install --no-cache-dir httpx==0.23.3
|
| 12 |
-
RUN pip install --no-cache-dir "python-telegram-bot[rate-limiter]"
|
| 13 |
-
COPY bot.py .
|
| 14 |
-
RUN chmod -R 777 /app
|
| 15 |
-
CMD ["python", "bot.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|