From 9ae2ca23b3f0b71ddf3bc2bb441ae2b531f051b1 Mon Sep 17 00:00:00 2001 From: Neelam Gangwani Date: Mon, 8 Jul 2024 15:01:36 -0700 Subject: [PATCH] Adding the docker file with all python client dependencies as a quick start image --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..a547a29b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:latest as firstBase + +RUN apt-get update && apt-get install -y python3-pip gdal-bin libgdal-dev + +RUN python3 -m pip install earthdaily + + + + + + + +