autotrain-pr0b0rk / Dockerfile
DevWild's picture
Upload folder using huggingface_hub
24262f1 verified
raw
history blame contribute delete
121 Bytes
FROM python:3.9
WORKDIR /code
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "script.py"]