3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-03 03:45:32 +02:00

Remove pip3 install command from Dockerfile

This commit is contained in:
Thomas Hahn 2024-03-22 15:26:07 -04:00
parent 2fd6922983
commit 2ec749ad4b

View File

@ -2,8 +2,8 @@
FROM flatironinstitute/triqs:unstable-ubuntu-clang FROM flatironinstitute/triqs:unstable-ubuntu-clang
ARG APPNAME=app4triqs ARG APPNAME=app4triqs
COPY requirements.txt /src/$APPNAME/requirements.txt # Install here missing dependencies, e.g.
RUN pip3 install -r /src/$APPNAME/requirements.txt # RUN apt-get install -y python3-skimage
COPY --chown=build . $SRC/$APPNAME COPY --chown=build . $SRC/$APPNAME
WORKDIR $BUILD/$APPNAME WORKDIR $BUILD/$APPNAME