From e767bb3c7436216b850ac16c21690f10bbb91351 Mon Sep 17 00:00:00 2001 From: Mathieu ROUDAUT Date: Fri, 1 Dec 2023 13:49:23 +0100 Subject: [PATCH] fix: missing gdl dep for arm arch --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index cc2c0af3..558d7d43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ ARG DEPS=build FROM python:3.9-bullseye AS build ENV PIP_ROOT_USER_ACTION=ignore +RUN apt-get update && apt-get install --yes libgdal-dev RUN --mount=type=cache,target=/root/.cache \ pip install --upgrade pip setuptools wheel @@ -54,6 +55,8 @@ FROM python:3.9-bullseye AS app WORKDIR /dist/ ENV PIP_ROOT_USER_ACTION=ignore + +RUN apt-get update && apt-get install --yes libgdal-dev RUN --mount=type=cache,target=/root/.cache \ pip install --upgrade pip setuptools wheel