23 lines
		
	
	
		
			574 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			574 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM telegraf:latest
 | 
						|
 | 
						|
# Install required packages
 | 
						|
RUN apt-get update \
 | 
						|
    && apt-get upgrade -y \
 | 
						|
    && apt-get install -y --no-install-recommends \
 | 
						|
    apt-transport-https \
 | 
						|
    ca-certificates \
 | 
						|
    curl \
 | 
						|
    gnupg-agent \
 | 
						|
    software-properties-common \
 | 
						|
    python3-distutils \
 | 
						|
    python3-pip \
 | 
						|
    && python3 -m ensurepip \
 | 
						|
    && python3 -m pip install requests \
 | 
						|
    && python3 -m pip install unidecode \
 | 
						|
    && rm /entrypoint.sh
 | 
						|
 | 
						|
ADD --chmod=1755 entrypoint.sh /
 | 
						|
ADD freebox-monit.py /usr/local/py/
 | 
						|
ADD telegraf.conf /etc/telegraf/
 | 
						|
 | 
						|
ENTRYPOINT ["/entrypoint.sh"] |