4 lines
155 B
Docker
4 lines
155 B
Docker
FROM debian:bullseye
|
|
RUN apt-get update && apt-get install -y python3 systemd && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
CMD ["/lib/systemd/systemd"]
|