diff options
author | Jan Benedikt <j.benedikt@partner.samsung.com> | 2020-03-18 15:54:19 +0100 |
---|---|---|
committer | Jan Benedikt <j.benedikt@partner.samsung.com> | 2020-03-19 16:27:50 +0100 |
commit | 80cc387d7b95614c92b86f76dc9d88f4cc4814bc (patch) | |
tree | be1a0d08a3a44c41d7617cfc9379c08f723997e7 /ansible/test/images/docker/ubuntu/Dockerfile | |
parent | 0d90cf8fe895e62b7343088ca9a017eff32e92dd (diff) |
Add necessary packages to Ubuntu Dockerfile
Added iproute2 and python3-docker to ubuntu docker file.
These packages is necessary for docker functionality in Molecule testing.
Is necessary to install them because there are not in ubuntu image by default.
Issue-ID: OOM-1671
Signed-off-by: Jan Benedikt <j.benedikt@partner.samsung.com>
Change-Id: I4e4f6bf342da3d5acba5b7b12c2dae9d64099426
Diffstat (limited to 'ansible/test/images/docker/ubuntu/Dockerfile')
-rw-r--r-- | ansible/test/images/docker/ubuntu/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible/test/images/docker/ubuntu/Dockerfile b/ansible/test/images/docker/ubuntu/Dockerfile index 1828c5b7..6dd079ad 100644 --- a/ansible/test/images/docker/ubuntu/Dockerfile +++ b/ansible/test/images/docker/ubuntu/Dockerfile @@ -5,7 +5,7 @@ FROM ubuntu:${RELEASE} ENV container docker # Install necessary packages -RUN apt-get update && apt-get -y install dbus systemd openssh-server +RUN apt-get update && apt-get -y install dbus systemd openssh-server iproute2 python3-docker # Create symlink python3 -> python RUN ln -s /usr/bin/python3 /usr/bin/python |