From 20c7d6383447f639830668adf3819b8d94d77e5e Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Thu, 10 Nov 2022 15:08:07 +0530 Subject: [PATCH] Small fix in build/Dockerfile (#1494) ## Description The `#` symbol not at the beginning is technically not valid and fails in podman. ref: https://docs.docker.com/engine/reference/builder/#format ## Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Test - [x] :computer: CI/Deployment - [x] :hamster: Trivial/Minor ## Issue(s) * # ## Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 8ce5809e9..209024254 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -3,7 +3,7 @@ FROM golang:1.18-alpine as builder WORKDIR /go/src/app COPY src . -ARG CORSO_BUILD_LDFLAGS="" # ldflags +ARG CORSO_BUILD_LDFLAGS="" RUN go build -o corso -ldflags "$CORSO_BUILD_LDFLAGS" FROM alpine:3.16