diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-11 16:46:41 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-11 16:46:41 +0530 |
commit | 63347c305ce7d4ff26a04517a356089696fb61c8 (patch) | |
tree | ee23c583cda2d6927797c23a7426251bcdbb7c22 /Dockerfile | |
parent | 103bf0783e9dd2f2c7719503094731b684955da8 (diff) |
fix #53456345345
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,10 +25,11 @@ RUN apt-get update && apt-get install -y \ # Download PLIP source code WORKDIR /src RUN git clone https://github.com/navanchauhan/plip /src/source +WORKDIR /src/source +RUN python3 setup.py install RUN mv /src/source/plip /src/plip RUN rm -r /src/source WORKDIR /src/plip -RUN python3 setup.py install # scripts |