Erinaldorodrigues commited on
Commit
9bc38c0
·
verified ·
1 Parent(s): 99e2f4a

Create Dockerfile

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