Hashim-dotcom commited on
Commit
fd5fc91
·
verified ·
1 Parent(s): 3ae27c8

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]