8 lines
260 B
Makefile
8 lines
260 B
Makefile
|
|
|
|
build: image
|
|
podman run -it --rm -v $(PWD):/app -v $(PWD)/.cargo-cache:/usr/local/cargo/registry -w /app route-switcher-builder:latest cargo build --target aarch64-unknown-linux-gnu
|
|
|
|
image:
|
|
podman build -f Dockerfile.arm -t route-switcher-builder:latest .
|