about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorkaiyou <pierre@jaury.eu>2021-01-08 07:13:26 +0100
committerGitHub <noreply@github.com>2021-01-08 07:13:26 +0100
commit1817f96578a31cbc719817433e9f7c592295094a (patch)
tree388b53b9501a33db329e3e3785267d98545e3dc3 /Dockerfile
parentf47c177eb741a99fef5708175a0a3d4dfcc02639 (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>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
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"