Fix ENV reference in Dockerfile

This commit is contained in:
Dan Sosedoff
2025-11-22 07:18:35 -08:00
parent 1c3c82de18
commit 4919407228

View File

@@ -5,7 +5,7 @@ FROM golang:1.24-bullseye AS build
# Set default build argument for CGO_ENABLED
ARG CGO_ENABLED=0
ENV CGO_ENABLED ${CGO_ENABLED}
ENV CGO_ENABLED=${CGO_ENABLED}
WORKDIR /build