mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 23:12:23 +00:00
18c2f8cec9
This also sets up a dbus container as part of the test environment. This container exposes a socket that the sut container can use
11 lines
247 B
Docker
11 lines
247 B
Docker
FROM ubuntu:20.04
|
|
|
|
# Install Systemd
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
dbus \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY dbus.conf /etc/dbus-1/session.d/
|
|
|
|
ENTRYPOINT ["dbus-run-session", "sleep", "infinity"]
|