From 7c8482c72b6458869b680bf052109934cbda86e6 Mon Sep 17 00:00:00 2001 From: Lucian Poston Date: Mon, 17 Feb 2020 19:18:15 -0600 Subject: [PATCH] Add bash to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 32e0831..f0d0831 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3-alpine RUN pip install yamllint && \ + apk add bash && \ rm -rf ~/.cache/pip ADD entrypoint.sh /entrypoint.sh