This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM postgres:12 | |
# Create plpython3u when the db starts. | |
RUN echo 'CREATE EXTENSION IF NOT EXISTS plpython3u;' > /docker-entrypoint-initdb.d/py3.sql | |
# Installing last python and plpython3 for current version | |
RUN apt update && apt install python3 python3-pip postgresql-plpython3-${PG_MAJOR} -y | |
NewerOlder