From 7743d93f1df7cf8aef06aae1fd0fd5a8f0a5b302 Mon Sep 17 00:00:00 2001 From: Guillem Borrell Date: Sat, 13 Jul 2024 12:51:05 +0200 Subject: [PATCH] Install spatial as well --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0b8f38f..742aede 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN uv pip install --python /usr/local/bin/python3 --no-cache -r requirements.tx RUN uv pip install --python /usr/local/bin/python3 -e . # Install the httpfs extension for duckdb -RUN python3 -c "import duckdb; db = duckdb.connect(':memory:'); db.sql('install httpfs')" +RUN python3 -c "import duckdb; db = duckdb.connect(':memory:'); db.sql('install httpfs'); db.sql('install spatial')" EXPOSE 8080