mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-02-14 22:11:51 +00:00
These schemas need to be imported for development purposes. Update Database schemas, add docker compose
6 lines
175 B
Docker
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/*
|