Commit 1a76f9bc authored by Yakubov, Sergey's avatar Yakubov, Sergey
Browse files

uninstall vtk via conda

parent 3e6d69ea
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@ RUN conda config --add channels conda-forge
RUN conda create -n trame python=3.10
RUN conda install -n trame mantid

RUN conda uninstall -n trame vtk

SHELL ["conda", "run", "-n", "trame", "/bin/bash", "-c"]

COPY --chown=trame-user:trame-user . /app
@@ -12,7 +14,8 @@ COPY --chown=trame-user:trame-user . /app
WORKDIR app

RUN pip install -r requirements.txt
RUN pip uninstall -y vtk && pip install --extra-index-url https://wheels.vtk.org vtk-egl
#RUN pip uninstall -y vtk
RUN pip install --extra-index-url https://wheels.vtk.org vtk-egl

USER trame-user