Correction for missing go generate in run makefile (#3100)

This commit is contained in:
Daniel Lorenzo 2024-03-05 09:28:56 -05:00 committed by GitHub
parent 3eb35b26b9
commit bb46640998
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,7 @@ WORKDIR /s
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
RUN go generate ./...
RUN go build -o /out .
WORKDIR /
ARG CONFIG_RUN