youtube-sync-bot / Dockerfile
hozifa1's picture
Add Dockerfile for 24/7 sync bot
b675d31 verified
Raw
History Blame Contribute Delete
155 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN pip install --no-cache-dir huggingface_hub
COPY worker.py /app/worker.py
CMD ["python", "-u", "/app/worker.py"]