diff options
author | Alex Auvolat <alex@adnab.me> | 2020-06-30 17:18:42 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-06-30 17:18:42 +0200 |
commit | ade29cf63a7c4426f0fa52f12c0ab8e0f0103cb1 (patch) | |
tree | b1df5f1b12f2ca647c2195999eca3a7e40ad3c94 /Makefile | |
parent | db6f1f35a869f9afa22198ee2ac32a812afae3c5 (diff) | |
download | garage-ade29cf63a7c4426f0fa52f12c0ab8e0f0103cb1.tar.gz garage-ade29cf63a7c4426f0fa52f12c0ab8e0f0103cb1.zip |
Build Docker image
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1,3 +1,20 @@ +BIN=target/release/garage +DOCKER=lxpz/garage_amd64 + all: #cargo fmt || true RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build + +$(BIN): + RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build --release + +$(BIN).stripped: $(BIN) + cp $^ $@ + strip $@ + +docker: $(BIN).stripped + docker build -t $(DOCKER):$(TAG) . + docker push $(DOCKER):$(TAG) + docker tag $(DOCKER):$(TAG) $(DOCKER):latest + docker push $(DOCKER):latest + |