fix(docker): Use the right shebang in healthcheck.sh (#963)

Alpine images don't have bash installed by default, so we need to use
`/bin/sh` instead. This follows the *same existing convention that
we follow in the `entrypoint.sh` script*.

Both ubuntu and alpine images have been tested (i.e healthchecks to
pass) to work with this change.
This commit is contained in:
Tarun Pothulapati 2023-03-20 12:29:00 +05:30 committed by GitHub
parent d2d70289ff
commit 34aec80e5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
HOST="localhost"
PORT=6379