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