Compare commits

..

2 Commits

Author SHA1 Message Date
7eabb34d33
ci/cd: build with logwarn
Some checks failed
release / docker (push) Has been cancelled
2025-03-25 10:41:51 +03:00
890230c3d5 Merge pull request 'upgrade dependencies' (#4) from upgrade-dep into master
Reviewed-on: #4
2025-03-25 08:40:16 +01:00

View File

@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
WORKDIR /build
RUN echo "Building on $BUILDPLATFORM, building for $TARGETPLATFORM"
RUN go mod download
RUN go build -tags logtrace -o sarafu-vise-events -ldflags="-X main.build=${BUILD} -s -w" cmd/main.go
RUN go build -tags logwarn -o sarafu-vise-events -ldflags="-X main.build=${BUILD} -s -w" cmd/main.go
FROM debian:bookworm-slim