2023-06-06 00:22:44 +03:00
|
|
|
FROM osgeo/gdal:ubuntu-small-3.6.3
|
2023-06-05 23:49:39 +03:00
|
|
|
|
|
|
|
RUN apt-get update -y \
|
|
|
|
&& apt-get install -y \
|
|
|
|
gdal-bin \
|
2023-06-06 00:22:44 +03:00
|
|
|
python3 \
|
|
|
|
python3-venv \
|
2023-06-05 23:49:39 +03:00
|
|
|
python3-pip
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN python3 -m venv /venv
|
|
|
|
ENV PATH="/venv/bin:$PATH"
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN pip install --upgrade pip setuptools wheel \
|
|
|
|
&& pip install --no-cache-dir .
|