Files
odoocker/postgres/Dockerfile

13 lines
354 B
Docker
Raw Normal View History

2023-05-10 01:34:55 -05:00
FROM postgres:15.2
2023-04-19 14:27:50 -05:00
2023-05-10 01:34:55 -05:00
# Update apt packages
RUN apt-get update && apt-get upgrade -y
2023-04-19 14:27:50 -05:00
2023-05-10 01:34:55 -05:00
#------------------------#
# APT Dependencies #
#------------------------#
# Unaccent extension dependencies
RUN apt-get install -y postgresql-contrib
# Copy the script to create the unaccent template
2023-04-19 14:27:50 -05:00
COPY ./entrypoint.sh /docker-entrypoint-initdb.d/entrypoint.sh