hozifa1 commited on
Commit
b675d31
·
verified ·
1 Parent(s): fef7439

Add Dockerfile for 24/7 sync bot

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN pip install --no-cache-dir huggingface_hub
6
+
7
+ COPY worker.py /app/worker.py
8
+
9
+ CMD ["python", "-u", "/app/worker.py"]