mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			728 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			728 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # Dockerfile for aarch64 version of HassIO add-on
 | |
| FROM arm64v8/ubuntu:bionic
 | |
| 
 | |
| RUN apt-get update && apt-get install -y --no-install-recommends \
 | |
|         python \
 | |
|         python-pip \
 | |
|         python-setuptools \
 | |
|         python-pil \
 | |
|         git \
 | |
|     && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*rm -rf /var/lib/apt/lists/* /tmp/* && \
 | |
|     pip install --no-cache-dir --no-binary :all: platformio && \
 | |
|     platformio settings set enable_telemetry No
 | |
| 
 | |
| COPY docker/platformio.ini /pio/platformio.ini
 | |
| RUN platformio run -d /pio; rm -rf /pio
 | |
| 
 | |
| COPY . .
 | |
| RUN pip install --no-cache-dir --no-binary :all: -e . && \
 | |
|     pip install --no-cache-dir --no-binary :all: tzlocal
 | |
| 
 | |
| CMD ["esphomeyaml", "/config/esphomeyaml", "dashboard"]
 |