right-tree/backend/Dockerfile

17 lines
351 B
Text
Raw Normal View History

2023-02-08 14:24:48 +13:00
FROM python:3.11-slim-bullseye
WORKDIR /app
2023-02-08 14:24:48 +13:00
RUN apt update \
&& apt install -y --no-install-recommends gdal-bin wkhtmltopdf \
2023-02-08 14:24:48 +13:00
&& rm -rf /var/lib/apt/lists/* \
&& apt clean
2021-10-15 14:31:52 +13:00
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"