vibes / Dockerfile
moses132's picture
Update Dockerfile
2621ec2 verified
raw
history blame contribute delete
138 Bytes
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"]