This commit is contained in:
Dominic Grimm 2023-12-02 10:12:06 +01:00
commit 70fde51c0f
2 changed files with 27 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
.PHONY: build
RUST_VERSION = 1.74.0
MOLD_VERSION = 2.4.0
build:
docker build . \
-t git.dergrimm.net/dergrimm/muslrust:$(RUST_VERSION) \
--build-arg="RUST_VERSION=$(RUST_VERSION)" \
--build-arg="MOLD_VERSION=$(MOLD_VERSION)"