Skip to content

Commit d342d7b

Browse files
Update TypeScript, use bash in Docker scripts
1 parent 6e3a664 commit d342d7b

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ EXPOSE 8080
1616

1717
HEALTHCHECK --interval=5s --timeout=10s --start-period=1s --retries=3 CMD [ "sh", "-c", "exec curl -f http://localhost:${HASURA_CONNECTOR_PORT:-8080}/health" ]
1818

19-
CMD [ "sh", "/scripts/start.sh" ]
19+
CMD [ "bash", "/scripts/start.sh" ]

docker/package-restore.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env sh
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
cd /functions

docker/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env sh
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
/scripts/package-restore.sh

docker/upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env sh
1+
#!/usr/bin/env bash
22
set -eu -o pipefail
33

44
# We do a --package-lock-only because we don't want to change the node_modules directory.

ndc-lambda-sdk/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ndc-lambda-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"p-limit": "^3.1.0",
4040
"ts-api-utils": "^2.1.0",
4141
"ts-node": "^10.9.2",
42-
"typescript": "^5.8.2"
42+
"typescript": "^5.8.3"
4343
},
4444
"devDependencies": {
4545
"@types/chai": "^4.3.11",

0 commit comments

Comments
 (0)