Add libgeos (shapely dependency) to Dockerfile
This commit is contained in:
parent
56be749f7d
commit
03a6e3278c
1 changed files with 5 additions and 4 deletions
|
@ -1,8 +1,9 @@
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
RUN apt-get update
|
RUN apt-get update && \
|
||||||
RUN apt-get install -y postgresql-server-dev-all
|
apt-get install -y postgresql-server-dev-all && \
|
||||||
RUN apt-get install -y python3-dev
|
apt-get install -y python3-dev && \
|
||||||
RUN apt-get install -y python3-pip
|
apt-get install -y python3-pip && \
|
||||||
|
apt-get install -y libgeos-dev
|
||||||
RUN pip3 install uwsgi
|
RUN pip3 install uwsgi
|
||||||
ADD /requirements.txt /app/
|
ADD /requirements.txt /app/
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue