imCuteCat commited on
Commit
3f3b350
1 Parent(s): dfc2463

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/replicate/cog:0.5.0
2
+
3
+ COPY . /src
4
+ WORKDIR /src
5
+
6
+ RUN pip install -r requirements.txt
7
+
8
+ ENTRYPOINT ["python", "predict.py"]