mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
320 B
15 lines
320 B
#!/bin/sh
|
|
|
|
GIT_BRANCH="${1:-master}"
|
|
|
|
podman \
|
|
build \
|
|
--squash \
|
|
--no-cache \
|
|
--force-rm \
|
|
--build-arg="GIT_REPO=file:///mnt" \
|
|
--build-arg="BRANCH=${GIT_BRANCH}" \
|
|
-v "${PWD}":/mnt:ro \
|
|
-f "buildtools/containerimage/Containerfile" \
|
|
--tag "mergerfs:${GIT_BRANCH}" \
|
|
buildtools/
|