Raiff1982 commited on
Commit
8970d9f
·
verified ·
1 Parent(s): 71f2c41

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvidia/cuda:12.1.0-runtime-ubuntu22.04
2
+
3
+ WORKDIR /app
4
+ RUN apt-get update && apt-get install -y python3.10 python3-pip
5
+ COPY requirements.txt .
6
+ RUN pip install -r requirements.txt
7
+
8
+ COPY app.py .
9
+ COPY rc_xi_large_dataset.jsonl .
10
+
11
+ CMD ["python", "app.py"]