[#40] Bulk PDF export

- backend changes
This commit is contained in:
Matthew Northcott 2023-02-21 16:43:46 +13:00
parent 0f36c79dbf
commit 3f9f816a7e
23 changed files with 621 additions and 240 deletions

View file

@ -3,7 +3,7 @@ FROM python:3.11-slim-bullseye
WORKDIR /app
RUN apt update \
&& apt install -y --no-install-recommends gdal-bin \
&& apt install -y --no-install-recommends gdal-bin wkhtmltopdf \
&& rm -rf /var/lib/apt/lists/* \
&& apt clean
@ -12,3 +12,5 @@ COPY ./requirements.txt /app/requirements.txt
RUN pip install -U --no-cache-dir -r requirements.txt
COPY . /app
ENV DJANGO_SETTINGS_MODULE="right_tree.settings"