mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-08-20 07:37:24 -04:00
14 lines
384 B
Bash
Executable File
14 lines
384 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
${DOCKER:-docker} buildx build \
|
|
--progress plain \
|
|
--platform ${PLATFORM:-linux/amd64,linux/arm64,linux/arm/v7} \
|
|
--build-arg "ARTIFACT_LOCATION=$ARTIFACT_LOCATION" \
|
|
-t ledgersmb/ledgersmb:$BRANCH \
|
|
-t ledgersmb/ledgersmb:$VERSION \
|
|
-t ghcr.io/ledgersmb/ledgersmb:$BRANCH \
|
|
-t ghcr.io/ledgersmb/ledgersmb:$VERSION \
|
|
--push .
|