Skip to content
Snippets Groups Projects

Included Dockerfile

Merged Nicolas Garcia Ospina requested to merge dockerfile into master
Dockerfile 0 → 100644
+ 35
0
# Copyright (C) 2021:
# Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum GFZ
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
# General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
FROM debian:bullseye-slim
WORKDIR /app
RUN apt-get update -y && apt-get install -y \
python3-pip \
proj-bin \
libgeos-dev \
gdal-bin \
libgdal-dev
RUN pip3 install --upgrade wheel
RUN pip3 install --upgrade setuptools
RUN pip3 install --upgrade pip
RUN pip3 install https://git.gfz-potsdam.de/dynamicexposure/openbuildingmap/obmgapanalysis/-/archive/master/obmgapanalysis-master.zip
CMD ["obmgapanalysis"]
Loading