yaziciz commited on
Commit
c8c420c
·
verified ·
1 Parent(s): 382e74e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -2,4 +2,11 @@ FROM yaziciz/deepsurg_vllm_v1
2
 
3
  WORKDIR /app
4
 
5
- COPY demo.py environment.yml ./
 
 
 
 
 
 
 
 
2
 
3
  WORKDIR /app
4
 
5
+ RUN pip install --upgrade pip
6
+ RUN conda env create -f ./environment.yml
7
+
8
+ # Make RUN commands use the new environment:
9
+ SHELL ["conda", "run", "-n", "ssgqa", "/bin/bash", "-c"]
10
+
11
+ # The code to run when container is started:
12
+ CMD ["./run.sh"]