vito/docker/publish.sh
Saeed Vaziry 3bf3f7eebc
Fix filemanager permissions (#508)
* Fix filemanager permissions

* fix filemanager permissions

* fix tests warning
2025-02-26 20:46:07 +01:00

22 lines
334 B
Bash

#!/bin/bash
TAG=$1
if [ -z "$TAG" ]; then
echo "No tag provided"
exit 1
fi
rm -rf /tmp/vito
git clone git@github.com:vitodeploy/vito.git /tmp/vito
cd /tmp/vito || exit
docker buildx build . \
-f docker/Dockerfile \
-t vitodeploy/vito:"$TAG" \
--platform linux/amd64,linux/arm64 \
--no-cache \
--push