From f57c1f24992de3ae89da4d15f4657cf740cc96c8 Mon Sep 17 00:00:00 2001 From: Mohamad Shehab <52987806+mhmdksh@users.noreply.github.com> Date: Mon, 12 Jun 2023 17:08:59 +0400 Subject: [PATCH] Update Dockerfile Updated the dockerfile that builds the postgres image preloaded with pg_cron to version 15 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c2be374..672248b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM postgres:13.8 +FROM postgres:15 RUN apt-get update -RUN apt-get -y install postgresql-13-cron +RUN apt-get -y install postgresql-15-cron COPY init-db /docker-entrypoint-initdb.d RUN chmod +x /docker-entrypoint-initdb.d/*