Build Docker image

This commit is contained in:
Alex Auvolat
2020-06-30 17:18:42 +02:00
parent db6f1f35a8
commit ade29cf63a
3 changed files with 29 additions and 0 deletions
+17
View File
@@ -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