FROM python:3.9-slim WORKDIR /app RUN pip install gradio==3.50.2 huggingface-hub==0.14.1 Pillow COPY app.py . CMD ["python", "app.py"]