proxstar/developing/proxstar-postgres/Dockerfile
Will Nilges 262b5b10eb Add schemas for development databases
These schemas need to be imported for development purposes.

Update Database schemas, add docker compose
2021-10-21 00:13:35 -04:00

6 lines
175 B
Docker

FROM postgres:12
RUN apt-get update \
&& apt-get install -y postgresql-plperl-12 \
&& apt-get install -y postgresql-plpython3-12 \
&& rm -rf /var/lib/apt/lists/*