Merge pull request #387 from srounce/patch-1

fix: docker-entrypoint.sh uses safe shebang
This commit is contained in:
Ralf Vogler 2025-03-05 15:57:54 +01:00 committed by GitHub
commit 8d538290a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eo pipefail # exit on error, error on any fail in pipe (not just last cmd); add -x to print each cmd; see gist bash_strict_mode.md