diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-11 16:32:31 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-11 16:32:31 +0530 |
commit | a3c33087b6f2b4413303710c0a825e34e12019d4 (patch) | |
tree | 865e00b21f7a0babe050f5eb7d0df92202b9b8b0 /Dockerfile | |
parent | 4cf8fbf5e12249b95524187df8cac1d098c684a1 (diff) |
only keeping the main plip folder
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -24,7 +24,10 @@ RUN apt-get update && apt-get install -y \ # Download PLIP source code WORKDIR /src -RUN git clone https://github.com/navanchauhan/plip /src/plip +RUN git clone https://github.com/navanchauhan/plip /src/source +RUN mv /src/source/plip /src/plip +RUN rm -r /src/source + # scripts WORKDIR /src @@ -33,8 +36,6 @@ RUN chmod +x /src/scripts/main.sh RUN python3 -m pip install untangle tabulate # execute tests -RUN ls /src -RUN ls /src/plip WORKDIR /src/plip/test RUN chmod +x run_all_tests.sh RUN ./run_all_tests.sh |