You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
source ./script_config.sh
|
|
|
|
if [ ! -d ./build ]; then
|
|
git clone https://gitlab.com/soapbox-pub/rebased.git ./build
|
|
cd ./build
|
|
else
|
|
cd ./build
|
|
git pull
|
|
fi
|
|
|
|
podman build -f Dockerfile --build-arg="BUILD_DATE=$DATE" --build-arg="VCS_REF=$REBASED_VER" -t $REBASED_IMG
|
|
|