Update Dockerfile
Browse files- Dockerfile +8 -1
Dockerfile
CHANGED
@@ -2,4 +2,11 @@ FROM yaziciz/deepsurg_vllm_v1
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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"]
|