FROM python:3.9 WORKDIR /app RUN pip install Flask huggingface-hub COPY . . EXPOSE 7860 CMD ["python", "app.py"]