8 lines
241 B
Plaintext
8 lines
241 B
Plaintext
|
|
FROM postgres:13.10
|
||
|
|
|
||
|
|
RUN sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
|
||
|
|
RUN apt-get clean
|
||
|
|
RUN apt-get update
|
||
|
|
RUN apt-get install wget -y
|
||
|
|
RUN apt-get install postgresql-13-postgis-3 -y
|
||
|
|
RUN apt-get install postgis -y
|