Install spatial as well
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Guillem Borrell 2024-07-13 12:51:05 +02:00
parent 84074a1ea1
commit 7743d93f1d

View file

@ -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