devops: update service build args

This commit is contained in:
2024-09-18 17:23:03 +03:00
parent fe7f096026
commit 10ff703dfe
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ WORKDIR /build
COPY . .
RUN go mod download
RUN go build -o celo-tracker-cache-bootstrap -ldflags="-X main.build=${BUILD} -s -w" cmd/bootstrap/main.go
RUN go build -o celo-tracker -ldflags="-X main.build=${BUILD} -s -w" cmd/service/main.go
RUN go build -o celo-tracker -ldflags="-X main.build=${BUILD} -s -w" cmd/service/*.go
FROM debian:bookworm-slim