FROM python:3.12-rc-slim-buster WORKDIR /app RUN pip install --no-cache-dir -r requirements.txt COPY . /app/ EXPOSE 7860 CMD ["python", "app.py"]