Files
odoocker/postgres/Dockerfile

15 lines
432 B
Docker
Raw Normal View History

2023-08-25 02:08:56 -05:00
FROM postgres:15.3
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 \
# Clean up the apt cache to reduce the image size
&& rm -rf /var/lib/apt/lists/*
2023-05-10 01:34:55 -05:00
# Copy the script to create the unaccent template
2023-08-25 02:08:56 -05:00
COPY ./entrypoint.sh /docker-entrypoint-initdb.d/entrypoint.sh