My whole Script is currently this:
#!/bin/sh clear; blanko=\"\"; # Dummy-Variablen variable=Testvariable; if [[$variable == $blanko]]; then
If your script runs on your local with /bin/bash but not on your container with sh, then consider adding bash to your container by apk add --no-cache bash.
/bin/bash
sh
apk add --no-cache bash