From a3a0775a99defcb41938a4148977cca79f09b1ab Mon Sep 17 00:00:00 2001 From: William Oldham Date: Tue, 12 Dec 2023 23:43:38 +0000 Subject: [PATCH] Update Dockerfile.ubuntu --- Dockerfile.ubuntu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index ce9db60..7fbabb0 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -2,7 +2,7 @@ ARG POSTGRES_VERSION=15 FROM ubuntu:latest AS base -RUN apt-get -y update && apt-get -y install wget && \ +RUN apt-get -y update && apt-get -y install software-properties-common ca-certificates wget && \ echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \ wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \ apt-get -y update