Skip to content

Commit db2e85b

Browse files
authored
chore: use sh interpreter in kong entrypoint (#141)
- use /bin/sh in shebang in kong-entrypoint.sh
1 parent a99284f commit db2e85b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ services:
104104
DASHBOARD_USERNAME: ${DASHBOARD_USERNAME}
105105
DASHBOARD_PASSWORD: ${DASHBOARD_PASSWORD}
106106
KONG_PORT_MAPS: "443:8000,443:8443"
107-
entrypoint: ["/bin/bash", "/home/kong/kong-entrypoint.sh"]
107+
entrypoint: ["/bin/sh", "/home/kong/kong-entrypoint.sh"]
108108

109109
auth:
110110
container_name: supabase-auth

docker/volumes/api/kong-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22
# Custom entrypoint for Kong that builds Lua expressions for request-transformer
33
# and performs environment variable substitution in the declarative config.
44

0 commit comments

Comments
 (0)