Split command executed in a separate file

This commit is contained in:
nemunaire 2024-06-18 18:08:26 +02:00
commit 41f8092419
4 changed files with 15 additions and 6 deletions

View file

@ -15,7 +15,7 @@ RUN apk --no-cache add git go-bindata
COPY . /go/src/git.nemunai.re/nemunaire/reveil
COPY --from=nodebuild /ui/build /go/src/git.nemunai.re/nemunaire/reveil/ui/build
WORKDIR /go/src/git.nemunai.re/nemunaire/reveil
RUN go get -v && go generate -v && go build -v -ldflags="-s -w"
RUN go get -v && go generate -v && go build -tags pulse -ldflags="-s -w"
FROM alpine:3.20