From 1af0f07ae5cf61028ed296fea9ba3ac04f568bea Mon Sep 17 00:00:00 2001 From: Roman Nikitin Date: Sat, 16 Jul 2022 16:11:24 +0300 Subject: [PATCH] Add bash to light image --- client_env/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client_env/Dockerfile b/client_env/Dockerfile index a534cfb..e613fdd 100644 --- a/client_env/Dockerfile +++ b/client_env/Dockerfile @@ -47,6 +47,10 @@ RUN apt-get update && \ FROM alpine:3.16 as image-light +RUN apk add bash + +SHELL ["/bin/bash", "-o", "pipefail", "-c"] + COPY --from=build /app/client /usr/local/bin/neo COPY client_env/entrypoint.sh /entrypoint.sh