summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Polenchuk <mpolenchuk@mirantis.com>2016-12-02 16:05:40 +0300
committerMichael Polenchuk <mpolenchuk@mirantis.com>2016-12-02 16:05:40 +0300
commit5c1fab9e0498e4bea6a5df1a22c25d915b2dbea7 (patch)
tree0bca69750718fd5dbc59c2cd1be181c0eee78c90
parent74248cb2594babbb144e191a3fbc755200aea043 (diff)
[fuel-plugin] Add missing sudo package to image
Change-Id: I45772bf1f949e92031263b76e746873bdb237e7a Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
-rw-r--r--fuel-plugin/Dockerfile2
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