Skip to content

Commit

Permalink
Remove double installation of requirements_all_ds
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Jan 28, 2019
1 parent 48b0dfa commit 6f0da97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ARG skip_ds_deps

# We first copy only the requirements file, to avoid rebuilding on every file
# change.
COPY requirements.txt requirements_dev.txt requirements_all_ds.txt ./
COPY requirements.txt requirements_dev.txt ./
RUN pip install -r requirements.txt -r requirements_dev.txt
RUN if [ "x$skip_ds_deps" = "x" ] ; then pip install -r requirements_all_ds.txt ; else echo "Skipping pip install -r requirements_all_ds.txt" ; fi

Expand Down

0 comments on commit 6f0da97

Please sign in to comment.