mirror of
https://github.com/pinry/pinry.git
synced 2026-01-31 03:29:30 +01:00
10 lines
232 B
Bash
Executable File
10 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
|
|
script_dir="$( dirname "${0}" )"
|
|
|
|
sudo docker buildx build \
|
|
--push \
|
|
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
|
|
-t getpinry/pinry:${@} "${script_dir}/../" \
|
|
-f "${script_dir}/../Dockerfile.autobuild"
|