From 1061e66dcfb9854a0b270e64adb7dda438945401 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Tue, 17 Sep 2019 08:01:15 -0400 Subject: [PATCH] Install boto3 in Docker image Since 68f81dd5cf 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3a8294b..a7ef2da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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