3
0
mirror of https://github.com/triqs/dft_tools synced 2024-08-06 20:40:00 +02:00

[jenkins] Make linux builds use requirements.txt

This commit is contained in:
Dylan Simon 2019-07-31 12:13:28 -04:00
parent 907827562b
commit 81346f5e4d

View File

@ -1,7 +1,10 @@
# See ../triqs/packaging for other options
FROM flatironinstitute/triqs:master-ubuntu-clang
ARG APPNAME
COPY requirements.txt /src/$APPNAME/requirements.txt
RUN pip install -r /src/$APPNAME/requirements.txt
COPY . $SRC/$APPNAME
WORKDIR $BUILD/$APPNAME
RUN chown build .