diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-07 21:15:12 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-07 21:15:12 +0530 |
commit | 4d28ea0c0b5e5d2e7a1712b29eb4f91b85e5bdc5 (patch) | |
tree | 963aedce890a95c0ec439c3044fb7b222bab5caf /Dockerfile | |
parent | b334659db44942ca1457af4752751b1281da4948 (diff) |
DeepSource DOK-DL3020
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ RUN apt-get update && apt-get install -y \ # copy PLIP source code WORKDIR /src -ADD plip/ plip/ +COPY plip/ plip/ RUN chmod +x plip/plipcmd.py ENV PYTHONPATH $PYTHONPATH:/src @@ -35,7 +35,7 @@ RUN ./run_all_tests.sh # scripts WORKDIR /src -ADD scripts/ scripts/ +COPY scripts/ scripts/ RUN chmod +x /src/scripts/main.sh RUN python3 -m pip install untangle tabulate |