From 75d722a4cd0fce18731a06e019e294c4b64edb02 Mon Sep 17 00:00:00 2001 From: Eric Chan Date: Fri, 8 Dec 2023 11:25:00 -0500 Subject: [PATCH] Update to Postgres 15 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index bedcda1..d5a9790 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM python:3-alpine3.16 +FROM python:3-alpine3.18 -RUN pip install --no-cache-dir awscli==1.25.32 +RUN pip install --no-cache-dir awscli==1.31.10 -RUN apk add --no-cache --update postgresql-client>14 +RUN apk add --no-cache --update postgresql-client>15 RUN aws --version && psql --version