From e40092c1df6a1ce105044208bdfacc3530ffb7a6 Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Thu, 5 Dec 2024 10:46:14 -0300 Subject: [PATCH] [BUGFIX] GitHub Actions / Build Docker images: Legacy key/value format with whitespace separator should not be used. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 28d12fb..898cb28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############################################################################### FROM golang:1.23.4-alpine3.20 AS init -ENV CGO_ENABLED 0 +ENV CGO_ENABLED=0 RUN apk add --update --no-cache make ENV WORKDIR=/app @@ -73,7 +73,7 @@ CMD ["make", "lint"] ############################################################################### FROM base AS development -ENV BINDIR /usr/local/bin +ENV BINDIR=/usr/local/bin RUN apk add --update --no-cache make COPY ./exercises ${WORKDIR}/exercises