right-tree/backend/Dockerfile

15 lines
289 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 \
&& 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