From d85bb30bdc98c0515c1366d6f77ee312a6a0fa40 Mon Sep 17 00:00:00 2001 From: Rany Hany Date: Mon, 10 Jun 2024 23:16:28 +0000 Subject: [PATCH] Add ecmwf-api-client to download ECMWF IFS dataset This adds a missing Python dependency that is required when running `openmeteo-api download-era5 ecmwf_ifs ...`. Signed-off-by: Rany Hany --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ce32e78..f425be1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,4 +5,4 @@ RUN apt update && apt install -y wget gpg RUN wget -qO - https://patrick-zippenfenig.github.io/ecCodes-ubuntu/public.key | gpg --dearmor -o /etc/apt/trusted.gpg.d/ecCodes-ubuntu.gpg RUN echo "deb https://patrick-zippenfenig.github.io/ecCodes-ubuntu/ jammy main" > /etc/apt/sources.list.d/ecCodes-ubuntu.list RUN apt update && apt install -y libnetcdf19 libeccodes0 bzip2 cdo curl python3-pip && rm -rf /var/lib/apt/lists/* -RUN pip3 install cdsapi \ No newline at end of file +RUN pip3 install cdsapi ecmwf-api-client \ No newline at end of file