Bartek Grzybowski | 84bd5ec | 2019-04-03 16:58:13 +0200 | [diff] [blame] | 1 | ARG RELEASE |
2 | FROM ubuntu:${RELEASE} | ||||
3 | |||||
4 | # Systemd requires this env for ConditionVirtualization setting in unit files | ||||
5 | ENV container docker | ||||
6 | |||||
7 | # Python2.7 required by ansible | ||||
8 | RUN apt-get update && apt-get -y install dbus systemd python openssh-server | ||||
9 | |||||
10 | EXPOSE 22 | ||||
11 | |||||
12 | CMD ["/sbin/init"] |