diff --git a/Dockerfile b/Dockerfile index f2faa33..53bed62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,9 @@ RUN apt install -y gcc RUN gcc --version RUN apt install -y build-essential RUN apt update -y && apt install -y \ - pandas \ - numpy + python-pip +RUN pip install pandas +RUN pip install numpy RUN git clone https://github.com/usnistgov/SCTK.git WORKDIR SCTK RUN make config && make all && make check && make install && make doc