Files
old-web/Dockerfile

12 lines
234 B
Docker
Raw Normal View History

2019-05-17 10:49:13 +02:00
FROM postgres:11.3
2019-04-30 09:06:46 +02:00
2019-05-17 10:49:13 +02:00
ENV POSTGIS_MAJOR 2.4
2019-04-30 09:06:46 +02:00
2019-05-17 10:49:13 +02:00
RUN apt-get update \
&& apt-get --assume-yes install software-properties-common postgis\
&& rm -rf /var/lib/apt/lists/
2019-04-30 09:06:46 +02:00
2019-05-17 10:49:13 +02:00
RUN mkdir -p /docker-entrypoint-initdb.d
2019-04-30 09:06:46 +02:00
2019-05-17 10:49:13 +02:00
CMD ["postgres"]