mirror of https://github.com/k3s-io/k3s
14 lines
285 B
Makefile
14 lines
285 B
Makefile
all: push
|
|
|
|
server: server.go
|
|
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./server.go
|
|
|
|
container: server
|
|
docker build -t gcr.io/google_containers/liveness .
|
|
|
|
push: container
|
|
gcloud preview docker push gcr.io/google_containers/liveness
|
|
|
|
clean:
|
|
rm -f server
|