From 0448266fd224777403d052b3d8f63250682f9d17 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 25 Mar 2023 22:29:06 +0100 Subject: [PATCH] Fix incorrect closing of ENV in Dockerfile --- base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/Dockerfile b/base/Dockerfile index 4b0fc0e..3da6621 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -5,7 +5,7 @@ FROM ${BUILD_FROM} # Environment variables ENV \ PATH="/usr/local/bin:$PATH" \ - GPG_KEY="CFDCA245B1043CF2A5F97865FFE87404168BD847" \ + GPG_KEY="CFDCA245B1043CF2A5F97865FFE87404168BD847" # Set shell SHELL ["/bin/bash", "-o", "pipefail", "-c"]