Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
FROM yaziciz/deepsurg_vllm_v1
|
2 |
|
|
|
|
|
|
|
3 |
RUN useradd -m -u 1000 user
|
4 |
|
5 |
USER user
|
@@ -11,9 +14,6 @@ WORKDIR $HOME/app
|
|
11 |
|
12 |
COPY --chown=user . $HOME/app
|
13 |
|
14 |
-
# Install system dependency required for OpenCV.
|
15 |
-
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
16 |
-
|
17 |
# Create the conda environment from the environment file in /app.
|
18 |
RUN conda env create -f environment.yml
|
19 |
|
|
|
1 |
FROM yaziciz/deepsurg_vllm_v1
|
2 |
|
3 |
+
# Install system dependency required for OpenCV.
|
4 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
5 |
+
|
6 |
RUN useradd -m -u 1000 user
|
7 |
|
8 |
USER user
|
|
|
14 |
|
15 |
COPY --chown=user . $HOME/app
|
16 |
|
|
|
|
|
|
|
17 |
# Create the conda environment from the environment file in /app.
|
18 |
RUN conda env create -f environment.yml
|
19 |
|