3f9f816a7e
- backend changes
16 lines
351 B
Docker
16 lines
351 B
Docker
FROM python:3.11-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt update \
|
|
&& apt install -y --no-install-recommends gdal-bin wkhtmltopdf \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& apt clean
|
|
|
|
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"
|