25 lines
1.2 KiB
Docker
25 lines
1.2 KiB
Docker
# This Dockerfile creates a custom postgres image used for CI and local deployment.
|
|
# This is required because we use some postgres extensions that aren't in the generic
|
|
# Postgres image such as pg_partman or pg_cron.
|
|
|
|
# As an image with pg_partman already exist, we start from this one and add pg_cron
|
|
# and possibly other extensions on top of that.
|
|
FROM ghcr.io/dbsystel/postgresql-partman:15-5
|
|
ARG PGCRON_VERSION="1.6.2"
|
|
USER root
|
|
RUN apk update && apk add --no-cache wget build-base clang19 llvm19
|
|
RUN cd /tmp \
|
|
&& wget "https://github.com/citusdata/pg_cron/archive/refs/tags/v${PGCRON_VERSION}.tar.gz" \
|
|
&& tar zxf v${PGCRON_VERSION}.tar.gz \
|
|
&& cd pg_cron-${PGCRON_VERSION} \
|
|
&& make \
|
|
&& make install \
|
|
&& cd .. && rm -r pg_cron-${PGCRON_VERSION} v${PGCRON_VERSION}.tar.gz
|
|
|
|
# Add configuration to postgresql.conf template
|
|
# Start with postgres database, then switch to tycho_indexer_0 after it's created
|
|
RUN echo "shared_preload_libraries = 'pg_partman_bgw,pg_cron'" >> /usr/local/share/postgresql/postgresql.conf.sample \
|
|
&& echo "cron.database_name = 'tycho_indexer_0'" >> /usr/local/share/postgresql/postgresql.conf.sample
|
|
|
|
# Stay as root user for PostgreSQL to work properly
|
|
# USER 1001 |