2023-02-08 14:24:48 +13:00
|
|
|
FROM python:3.11-slim-bullseye
|
2021-10-06 14:06:55 +13:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-10-06 14:06:55 +13:00
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
|
|
|
|
|
|
RUN pip install -U --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
COPY . /app
|