Fix incorrect closing of ENV in Dockerfile

This commit is contained in:
Franck Nijhof 2023-03-25 22:29:06 +01:00
parent 676b49e13e
commit 0448266fd2
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -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"]