-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update -> buster + mapproxy 1.12.0 (#7)
- Loading branch information
1 parent
704a622
commit 03a7b81
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.7-slim-stretch | ||
FROM python:3.7-slim-buster | ||
LABEL maintainer="PDOK dev <[email protected]>" | ||
|
||
RUN apt-get -y update \ | ||
|
@@ -7,20 +7,19 @@ RUN apt-get -y update \ | |
python-yaml \ | ||
python-lxml \ | ||
python-shapely \ | ||
python-imaging \ | ||
python-virtualenv \ | ||
python-pip \ | ||
libpcre3 \ | ||
libpcre3-dev \ | ||
libproj12 \ | ||
libproj13 \ | ||
libgeos-c1v5 \ | ||
libgdal20 \ | ||
git \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install Numpy PyYAML boto3 Pillow requests Shapely eventlet gunicorn uwsgi prometheus_client | ||
# master for the 1.12-alpha | ||
RUN pip install git+https://github.com/mapproxy/mapproxy.git@master | ||
# 1.12.0 | ||
RUN pip install git+https://github.com/mapproxy/mapproxy.git@1.12.0 | ||
|
||
# when overwriting the CMD with a uwsgi command it's good practice to not run it as root | ||
RUN groupadd -g 1337 mapproxy \ | ||
|