10 lines
242 B
Bash
Executable file
10 lines
242 B
Bash
Executable file
#!/bin/sh
|
|
|
|
script="$( readlink -f "${0}" )"
|
|
script_dir="$( dirname "${script}" )"
|
|
|
|
docker buildx build \
|
|
--pull --push \
|
|
--tag "code.lenaisten.de/lenaisten/lev-templates:latest" \
|
|
--platform "linux/amd64" \
|
|
"${script_dir}/.."
|