dz1-spatial-query/stac-fastapi-pgstac/Dockerfile.docs
weixin_46229132 5bc6302955 first commit
2025-07-03 20:29:02 +08:00

15 lines
270 B
Docker

FROM python:3.10-slim
# build-essential is required to build a wheel for ciso8601
RUN apt update && apt install -y build-essential
RUN python -m pip install --upgrade pip
COPY . /opt/src
WORKDIR /opt/src
RUN python -m pip install ".[docs]"
CMD ["mkdocs", "build"]