Skip to content

Instantly share code, notes, and snippets.

View VictorGob's full-sized avatar

Víctor VictorGob

View GitHub Profile
@VictorGob
VictorGob / Dockerfile_postgresql_plpy3
Last active October 30, 2023 08:46
Dockerfile for Postgresql + PLpython3
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