From 57740280e8785a8ee1d6996016f7a40d6cb65de6 Mon Sep 17 00:00:00 2001 From: Adam Hendel Date: Wed, 24 Jul 2024 08:31:56 -0500 Subject: [PATCH] install --- ml-cnpg/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml-cnpg/Dockerfile b/ml-cnpg/Dockerfile index b68b508..33c295b 100644 --- a/ml-cnpg/Dockerfile +++ b/ml-cnpg/Dockerfile @@ -31,7 +31,7 @@ RUN curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | te ENV TZ=UTC ENV DEBIAN_FRONTEND=noninteractive ARG PG_VERSION=16 -RUN apt update -y && apt install git postgresml-${PG_VERSION} +RUN apt-get update -y && apt-get install -y git postgresml-${PG_VERSION} # Revert the postgres user to id 26 RUN usermod -u 26 postgres