This commit is contained in:
Yhael S
2023-05-10 01:34:55 -05:00
parent be46ba8b75
commit 45d19223c7
7 changed files with 227 additions and 170 deletions

View File

@@ -1,5 +1,13 @@
FROM postgres:15.1
FROM postgres:15.2
RUN apt-get update && apt-get install postgresql-contrib
# 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