Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various small improvements #12

Merged
merged 8 commits into from
Jun 12, 2023
Next Next commit
add Dockerfile
traines-source committed May 24, 2023
commit 3e7c7a4418881308007f11499256cfb947312625
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3.10-bullseye

RUN apt-get update && apt-get install -y sqlite3 libgeos-dev lz4 wget g++ cmake cmake-curses-gui make libexpat1-dev zlib1g-dev libbz2-dev libsparsehash-dev \
libboost-program-options-dev libboost-dev libgdal-dev libproj-dev libsqlite3-mod-spatialite libspatialindex-dev

RUN mkdir -p /usr/src/app/

WORKDIR /usr/src/app/

COPY . ./

RUN pip install -r requirements.txt