From 24019d9d85416f45bd1014e098b33a0a8985a1a3 Mon Sep 17 00:00:00 2001 From: Maria Bermudez Date: Thu, 29 Nov 2018 15:05:11 -0800 Subject: [PATCH] Remove default assertion for dash shell --- develop/develop-images/dockerfile_best-practices.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/develop/develop-images/dockerfile_best-practices.md b/develop/develop-images/dockerfile_best-practices.md index 3054aa98d6..57c513cdf0 100644 --- a/develop/develop-images/dockerfile_best-practices.md +++ b/develop/develop-images/dockerfile_best-practices.md @@ -463,8 +463,8 @@ RUN set -o pipefail && wget -O - https://some.site | wc -l > /number ``` > Not all shells support the `-o pipefail` option. > -> In such cases (such as the `dash` shell, which is the default shell on -> Debian-based images), consider using the _exec_ form of `RUN` to explicitly +> In cases such as the `dash` shell on +> Debian-based images, consider using the _exec_ form of `RUN` to explicitly > choose a shell that does support the `pipefail` option. For example: > > ```Dockerfile