go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/logdog/server/cmd/logdog_collector/Makefile (about) 1 # Copyright 2020 The LUCI Authors. All rights reserved. 2 # Use of this source code is governed under the Apache License, Version 2.0 3 # that can be found in the LICENSE file. 4 5 # All commands here are exclusively for local development and this file can 6 # safely be deleted if it's not useful. It has mostly informational purpose. 7 # 8 # Images produced here shouldn't really be pushed anywhere. The real images are 9 # produced by Chrome Ops CI pipeline: 10 # https://chromium.googlesource.com/infra/infra/+/master/build/images/README.md. 11 12 build-binary: 13 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./docker . 14 15 build-image: build-binary 16 docker build -t logdog_collector ./docker