Browse Source

Enforce bash as default shell in compose-web Dockerfile (the right way)

pull/563/head
Shagen Ogandzhanian 4 years ago
parent
commit
56bb89fad6
  1. 3
      ci/docker/compose-web/Dockerfile

3
ci/docker/compose-web/Dockerfile

@ -4,6 +4,9 @@ ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'
SHELL ["/bin/bash", "-c"] SHELL ["/bin/bash", "-c"]
RUN echo "dash dash/sh boolean false" | debconf-set-selections
RUN dpkg-reconfigure -f noninteractive dash
RUN dpkg --add-architecture i386 && apt-get update -yqq && apt-get install -y \ RUN dpkg --add-architecture i386 && apt-get update -yqq && apt-get install -y \
curl \ curl \
git \ git \

Loading…
Cancel
Save