Facececersek commited on
Commit
4f200a0
·
verified ·
1 Parent(s): f81b854

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Install dependencies
6
+ RUN pip install --no-cache-dir gradio==4.44.0 huggingface-hub>=0.20.0
7
+
8
+ # Copy application
9
+ COPY app.py .
10
+
11
+ # Expose port
12
+ EXPOSE 7860
13
+
14
+ # Run
15
+ CMD ["python", "app.py"]