hybirdvault commited on
Commit
1744d63
·
verified ·
1 Parent(s): c5fcb63

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ WORKDIR /app
3
+ RUN pip install huggingface_hub datasets
4
+ COPY app.py .
5
+ ENV HF_TOKEN=""
6
+ CMD ["python", "app.py"]