Browse Source

Fixed missing go generate in run script

pull/3100/head
Daniel Lorenzo 2 years ago committed by GitHub
parent
commit
e44b914ddd
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