2024-08-24 18:20:39 -06:00
|
|
|
FROM postgres:16.4
|
2023-04-19 14:27:50 -05:00
|
|
|
|
2023-05-10 01:34:55 -05:00
|
|
|
#------------------------#
|
|
|
|
|
# APT Dependencies #
|
|
|
|
|
#------------------------#
|
2023-08-25 02:08:56 -05:00
|
|
|
# Update apt packages
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
|
# Unaccent extension dependencies
|
|
|
|
|
postgresql-contrib \
|
2023-09-27 22:47:22 -05:00
|
|
|
apt-utils \
|
2023-08-25 02:08:56 -05:00
|
|
|
# Clean up the apt cache to reduce the image size
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2023-05-10 01:34:55 -05:00
|
|
|
|
2023-09-27 22:47:22 -05:00
|
|
|
COPY --chown=postgres:postgres ./.env /
|
|
|
|
|
|
2023-05-10 01:34:55 -05:00
|
|
|
# Copy the script to create the unaccent template
|
2023-09-27 22:47:22 -05:00
|
|
|
COPY ./postgres/entrypoint.sh /docker-entrypoint-initdb.d/entrypoint.sh
|