Fixed naming scheme

canary
WolverinDEV 2020-05-03 22:18:11 +02:00
parent 2967a5bcc0
commit 81da256de2
1 changed files with 2 additions and 2 deletions

View File

@ -35,12 +35,12 @@ git clone https://github.com/TeaSpeak/TeaDocker.git auto-build/teadocker || {
exit 1
}
cp "$zip_file" auto-build/teadocker/web/files.zip || {
cp "$zip_file" auto-build/teadocker/web/TeaWeb-release.zip || {
echo "Failed to copy Docker webclient files to the docker files build context"
exit 1
}
docker build -f auto-build/teadocker/web/travis.Dockerfile --build-arg WEB_VERSION="$git_rev" --build-arg WEB_ZIP=files.zip -t teaspeak/web:"$rolling_tag" auto-build/teadocker/web || {
docker build -f auto-build/teadocker/web/travis.Dockerfile --build-arg WEB_VERSION="$git_rev" --build-arg WEB_ZIP=TeaWeb-release.zip -t teaspeak/web:"$rolling_tag" auto-build/teadocker/web || {
echo "Failed to build dockerfile"
exit 1
}