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
1 changed files with 2 additions and 2 deletions

View File

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