Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
FROM yaziciz/deepsurg_vllm_v1
|
2 |
WORKDIR /app
|
3 |
|
|
|
|
|
|
|
4 |
# Create the conda environment from the environment file in /app.
|
5 |
RUN conda env create -f environment.yml
|
6 |
|
|
|
1 |
FROM yaziciz/deepsurg_vllm_v1
|
2 |
WORKDIR /app
|
3 |
|
4 |
+
# Install system dependency required for OpenCV.
|
5 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
6 |
+
|
7 |
# Create the conda environment from the environment file in /app.
|
8 |
RUN conda env create -f environment.yml
|
9 |
|