FROM python:3.9 WORKDIR /code COPY . . RUN pip install --no-cache-dir --upgrade -r requirements.txt EXPOSE 7860 CMD ["python", "main.py"]