From cb3be586d6fa9c504f8575a832b19e8e3b2e64c2 Mon Sep 17 00:00:00 2001 From: Thell 'Bo' Fowler Date: Sat, 31 Jan 2015 11:02:09 -0600 Subject: [PATCH] Update dockerfile_best-practices.md Signed-off-by: Thell Fowler --- docs/sources/articles/dockerfile_best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/articles/dockerfile_best-practices.md b/docs/sources/articles/dockerfile_best-practices.md index 85095f1c03..21334c16e4 100644 --- a/docs/sources/articles/dockerfile_best-practices.md +++ b/docs/sources/articles/dockerfile_best-practices.md @@ -359,7 +359,7 @@ like `RUN groupadd -r postgres && useradd -r -g postgres postgres`. > rebuilds. So, if it’s critical, you should assign an explicit UID/GID. You should avoid installing or using `sudo` since it has unpredictable TTY and -signal-forwarding behavior that can cause more more problems than it solves. If +signal-forwarding behavior that can cause more problems than it solves. If you absolutely need functionality similar to `sudo` (e.g., initializing the daemon as root but running it as non-root), you may be able to use [“gosu”](https://github.com/tianon/gosu).