aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-09-11 16:32:31 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-09-11 16:32:31 +0530
commita3c33087b6f2b4413303710c0a825e34e12019d4 (patch)
tree865e00b21f7a0babe050f5eb7d0df92202b9b8b0
parent4cf8fbf5e12249b95524187df8cac1d098c684a1 (diff)
only keeping the main plip folder
-rw-r--r--Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 011df53..f7e1400 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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