Skip to content

Commit

Permalink
Include pyproject.toml in Dockerfile's dep_builder
Browse files Browse the repository at this point in the history
Required with newer pip versions. See
pypa/pip#9945 for some related discussion.
  • Loading branch information
gadomski committed Jul 15, 2021
1 parent e908268 commit 4f51371
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ RUN apt-get update \
&& apt-get install -y gcc build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY setup.cfg ./
COPY pyproject.toml ./
COPY src/stactools/core/__init__.py src/stactools/core/
# Install dependencies but remove the actual package
RUN pip install --prefix=/install . \
Expand Down

0 comments on commit 4f51371

Please sign in to comment.