forked from flashcat/categraf
14 lines
321 B
Docker
14 lines
321 B
Docker
FROM --platform=$TARGETPLATFORM ubuntu:22.10
|
|
|
|
RUN apt update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt -y install tzdata ca-certificates
|
|
|
|
COPY docker/nsswitch.conf /etc/nsswitch.conf
|
|
|
|
COPY categraf /usr/bin/categraf
|
|
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
|
|
COPY conf /etc/categraf/conf
|
|
|
|
CMD ["/entrypoint.sh"]
|