coder-vansh commited on
Commit
0db45e4
·
verified ·
1 Parent(s): d7cca54

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvcr.io/nvidia/pytorch:24.01-py3
2
+
3
+ WORKDIR /app
4
+
5
+ RUN pip install --no-cache-dir vllm gradio huggingface_hub
6
+
7
+ COPY . .
8
+
9
+ CMD ["python", "app.py"]