Browse Source

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

pull/3102/head
Daniel Lorenzo 1 year ago committed by GitHub
parent
commit
bb46640998
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      scripts/run.mk

1
scripts/run.mk

@ -5,6 +5,7 @@ WORKDIR /s @@ -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

Loading…
Cancel
Save