mirror of
https://github.com/odoocker/odoocker
synced 2025-12-22 04:59:32 +01:00
13 lines
354 B
Docker
13 lines
354 B
Docker
FROM postgres:15.2
|
|
|
|
# Update apt packages
|
|
RUN apt-get update && apt-get upgrade -y
|
|
|
|
#------------------------#
|
|
# APT Dependencies #
|
|
#------------------------#
|
|
# Unaccent extension dependencies
|
|
RUN apt-get install -y postgresql-contrib
|
|
|
|
# Copy the script to create the unaccent template
|
|
COPY ./entrypoint.sh /docker-entrypoint-initdb.d/entrypoint.sh |