revert 5ae8a31dc3
Some checks failed
continuous-integration/drone/push Build was killed

revert build.entrypoint.sh: use POSIX sh

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

Signed-off-by: Filip Kobierski <fkobi@fsfe.org>
This commit is contained in:
2025-12-04 10:04:00 +00:00
parent b8ff3c2dab
commit a1b17c1cf0
2 changed files with 2 additions and 2 deletions

View File

@@ -30,6 +30,6 @@ COPY build.entrypoint.sh ./
# Set the workdir
WORKDIR /website-source
ENTRYPOINT ["sh", "/website-source-during-build/build.entrypoint.sh"]
ENTRYPOINT ["bash", "/website-source-during-build/build.entrypoint.sh"]

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -e
# Ran by dockerfile as entrypoint
# Ran from the volume of the website source mounted at /website-source