From ca6d5723ec2a1b3f94f96eccca4006bb893b4e88 Mon Sep 17 00:00:00 2001 From: William Oldham Date: Tue, 12 Dec 2023 23:39:25 +0000 Subject: [PATCH] Update Dockerfile.ubuntu --- Dockerfile.ubuntu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 5aa6c9c..ce9db60 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -2,9 +2,9 @@ ARG POSTGRES_VERSION=15 FROM ubuntu:latest AS base -RUN apt-get -y update && apt-get -y install 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 - && +RUN apt-get -y update && apt-get -y install 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 RUN apt-get -y install postgresql-client-${POSTGRES_VERSION}