diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2016-12-02 16:05:40 +0300 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2016-12-02 16:05:40 +0300 |
commit | 5c1fab9e0498e4bea6a5df1a22c25d915b2dbea7 (patch) | |
tree | 0bca69750718fd5dbc59c2cd1be181c0eee78c90 /fuel-plugin/Dockerfile | |
parent | 74248cb2594babbb144e191a3fbc755200aea043 (diff) |
[fuel-plugin] Add missing sudo package to image
Change-Id: I45772bf1f949e92031263b76e746873bdb237e7a
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'fuel-plugin/Dockerfile')
-rw-r--r-- | fuel-plugin/Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fuel-plugin/Dockerfile b/fuel-plugin/Dockerfile index 58ca19e11..2b7335e0f 100644 --- a/fuel-plugin/Dockerfile +++ b/fuel-plugin/Dockerfile @@ -1,5 +1,7 @@ #!/bin/bash FROM ubuntu:16.04 + +RUN apt-get install -y sudo RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo RUN chmod 0440 /etc/sudoers.d/open-sudo |