Browse code

Update dockerfile_best-practices.md

Signed-off-by: Thell Fowler <Thell@tbfowler.name>

Thell 'Bo' Fowler authored on 2015/02/01 02:02:09
Showing 1 changed files
... ...
@@ -359,7 +359,7 @@ like `RUN groupadd -r postgres && useradd -r -g postgres postgres`.
359 359
 > rebuilds. So, if it’s critical, you should assign an explicit UID/GID.
360 360
 
361 361
 You should avoid installing or using `sudo` since it has unpredictable TTY and
362
-signal-forwarding behavior that can cause more more problems than it solves. If
362
+signal-forwarding behavior that can cause more problems than it solves. If
363 363
 you absolutely need functionality similar to `sudo` (e.g., initializing the
364 364
 daemon as root but running it as non-root), you may be able to use
365 365
 [“gosu”](https://github.com/tianon/gosu).