Skip to content

Commit

Permalink
Install boto3 in Docker image
Browse files Browse the repository at this point in the history
Since 68f81dd boto3 is an optional dependency. However, that breaks
the `--s3` flag when running via Docker.

This installs boto3 as part of the Dockerfile so that it's always there.
  • Loading branch information
orangejulius committed Sep 17, 2019
1 parent e54244f commit 1061e66
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 @@ -24,7 +24,7 @@ RUN /var/lib/dpkg/info/ca-certificates-java.postinst configure
WORKDIR /app
COPY . /app
RUN python3 setup.py test
RUN pip3 install .
RUN pip3 install . && pip3 install boto3

COPY planetutils.sh /scripts/planetutils.sh

Expand Down

0 comments on commit 1061e66

Please sign in to comment.