11 lines
242 B
Text
11 lines
242 B
Text
|
#!/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}/.."
|