Jackflack09 commited on
Commit
b4d83e7
·
1 Parent(s): c183702

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # Upgrade pip
2
+ RUN pip install --upgrade pip
3
+
4
+ # Install requirements
5
+ RUN --mount=target=requirements.txt,source=requirements.txt pip install --no-cache-dir -r requirements.txt