build.entrypoint.sh: use POSIX sh
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

-e not in the shebang as it is ignored when launched with `sh` directly

Signed-off-by: Filip Kobierski <fkobi@fsfe.org>
This commit was merged in pull request #5542.
This commit is contained in:
2025-12-04 10:19:16 +01:00
parent ec801da05c
commit 5ae8a31dc3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -30,6 +30,6 @@ COPY build.entrypoint.sh ./
# Set the workdir
WORKDIR /website-source
ENTRYPOINT ["bash", "/website-source-during-build/build.entrypoint.sh"]
ENTRYPOINT ["sh", "/website-source-during-build/build.entrypoint.sh"]
+1 -1
View File
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
set -e
# Ran by dockerfile as entrypoint
# Ran from the volume of the website source mounted at /website-source