Arabic-Chatbot / Dockerfile
2506minecraft's picture
Update Dockerfile
a54689a verified
raw
history blame contribute delete
218 Bytes
FROM python:3.10-slim
RUN apt-get update && apt-get install -y ffmpeg libsndfile1
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt --upgrade
COPY . .
CMD ["python", "app.py"]