cronjob / Dockerfile
testdeep123's picture
Update Dockerfile
29c7d72 verified
raw
history blame contribute delete
126 Bytes
FROM python:3.10
WORKDIR /app
COPY app.py .
RUN pip install flask huggingface_hub gdown humanize
CMD ["python", "app.py"]