ensure bash is installed and used for custom scripts
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2021-09-20 21:58:48 +02:00
parent 701453f564
commit 5a10538e38
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ ENV LHCI_BASE_DIR=/drone/src \
ADD overlay/ /
RUN apt-get update && apt-get install -y git curl wget gnupg jq && \
RUN apt-get update && apt-get install -y git curl wget gnupg jq bash && \
curl -SsL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" && \
chmod 755 /usr/local/bin/yq && \
wget -qO - "https://dl-ssl.google.com/linux/linux_signing_key.pub" | apt-key add - && \

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
set -eo pipefail
CONFIG="${LHCI_BASE_DIR%/}/.lighthouserc.yml"

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
set -eo pipefail
exec /usr/local/bin/lhci "$@"