flozi00 commited on
Commit
bca3ee2
·
1 Parent(s): 799a764

rocm dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile.rocm +14 -0
Dockerfile.rocm ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM rocm/pytorch:latest
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt ./
6
+
7
+ RUN pip install --upgrade pip \
8
+ && pip install -r requirements.txt
9
+
10
+ COPY . .
11
+
12
+ EXPOSE 7860
13
+
14
+ CMD ["python", "app.py"]