f63acb65ea
Change-Id: I49bd970ecbc7a4b1b2fcb37abbc6d506d3e1ee9a
6 lines
147 B
Docker
6 lines
147 B
Docker
FROM debian:stable-slim
|
|
RUN apt-get update && \
|
|
apt-get -y install chrony && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
CMD ["/usr/sbin/chronyd", "-d"]
|