Skip to content

Commit

Permalink
Fix missing requirement from docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
BielStela committed Feb 12, 2025
1 parent 6a2912e commit e71c77c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS production

# Requirement of fiona and gdal.
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends libexpat1; \
rm -rf /var/lib/apt/lists/*

WORKDIR /app

# Enable bytecode compilation
Expand Down

0 comments on commit e71c77c

Please sign in to comment.