CoolFace
Apppublic

Sameerquadri/hinglishbot

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
Dockerfile7 linesDownload Raw Back to root
1FROM python:3.102RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*3WORKDIR /app4COPY requirements.txt .5RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r requirements.txt6COPY . .7CMD ["python", "bot.py"]