This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/pkg/chrony/Dockerfile
Renovate Bot ed3b392264
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update alpine docker tag to v3.18
2023-05-10 00:03:06 +00:00

11 lines
228 B
Docker

FROM alpine:3.18
MAINTAINER Pierre-Olivier Mercier <nemunaire@nemunai.re>
RUN apk add --no-cache chrony
EXPOSE 123/udp
CMD ["/usr/sbin/chronyd","-d"]
LABEL org.mobyproject.config='{"capabilities": ["CAP_NET_BIND_SERVICE"]}'