From 08a33e9a42bbbd2667724a1707b85230a0185712 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Thu, 18 Apr 2024 15:02:49 -0400 Subject: [PATCH] chore(container): add gdal to codespace, disable dynamic versioning (#9013) Resolves #9011 take 2 also TIL you can't reopen a closed PR after force-pushing to the branch --- .devcontainer/Dockerfile | 3 +++ .devcontainer/updateContent.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000000..1b834ee77e9f --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,3 @@ +FROM mcr.microsoft.com/vscode/devcontainers/python:3.11 + +RUN apt-get update && apt-get install -y --no-install-recommends libgdal-dev diff --git a/.devcontainer/updateContent.sh b/.devcontainer/updateContent.sh index 89c532d17ea5..9b650744c80f 100755 --- a/.devcontainer/updateContent.sh +++ b/.devcontainer/updateContent.sh @@ -2,4 +2,4 @@ # install ibis python3 -m pip install ipython -python3 -m pip install -e '.[clickhouse,duckdb,clickhouse,examples,geospatial]' +POETRY_DYNAMIC_VERSIONING=false python3 -m pip install -e '.[duckdb,clickhouse,examples,geospatial]'