Bc-AI commited on
Commit
f92cfa5
·
verified ·
1 Parent(s): f466737

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM pytorch/pytorch:2.0.1-cuda11.7-runtime-ubuntu22.04
2
+
3
+ WORKDIR /app
4
+
5
+ RUN pip install --no-cache-dir \
6
+ gradio \
7
+ transformers \
8
+ huggingface_hub
9
+
10
+ COPY app.py .
11
+
12
+ CMD ["python", "app.py"]