From 8fea35cd5ed013e0891e4f6fbf7d55ddc524dc69 Mon Sep 17 00:00:00 2001 From: Oz Tiram Date: Thu, 21 Dec 2023 15:22:21 +0100 Subject: [PATCH] Fix shell inside RUN directive --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 17074e9e..d81853d5 100644 --- a/Earthfile +++ b/Earthfile @@ -279,7 +279,7 @@ base-image: ELSE RUN apt install -y apt-transport-https ca-certificates curl && \ echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \ - curl -fsSL -o postgresql.asc https://www.postgresql.org/media/keys/ACCC4CF8.asc + curl -fsSL -o postgresql.asc https://www.postgresql.org/media/keys/ACCC4CF8.asc && \ gpg --batch --yes --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg postgresql.asc && \ rm postgresql.asc && \ apt update && \