Skip to content

Commit

Permalink
improve ordering of commands in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nickv2002 committed Mar 13, 2024
1 parent 7f05d83 commit 9a500cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ COPY . .
# Compile and install dependencies
# then install the local package
RUN pip install -r requirements.txt \
&& rm -rf ~/.cache/pip \
&& pip install .
&& pip install . \
&& rm -rf ~/.cache/pip

ENTRYPOINT ["/usr/local/bin/dominion_dividers"]
CMD ["--help"]

0 comments on commit 9a500cd

Please sign in to comment.