diff options
author | kaiyou <pierre@jaury.eu> | 2021-01-08 07:13:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 07:13:26 +0100 |
commit | 1817f96578a31cbc719817433e9f7c592295094a (patch) | |
tree | 388b53b9501a33db329e3e3785267d98545e3dc3 | |
parent | f47c177eb741a99fef5708175a0a3d4dfcc02639 (diff) |
Fix the Dockerfile in case of Kaniko build (#15510)
Kaniko does not support looking up binaries from $PATH, so we specify the full path to the bash binary. Co-authored-by: kaiyou <dev@kaiyou.fr>
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 95d45bab4..136b2a35a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:20.04 as build-dep # Use bash for the shell -SHELL ["bash", "-c"] +SHELL ["/usr/bin/bash", "-c"] # Install Node v12 (LTS) ENV NODE_VER="12.20.0" |