mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			545 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			545 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # Dockerfile for aarch64 version of HassIO add-on
 | |
| FROM homeassistant/aarch64-base:latest
 | |
| 
 | |
| RUN apk add --no-cache \
 | |
|         python2 \
 | |
|         py2-pip \
 | |
|         git \
 | |
|         openssh \
 | |
|         libc6-compat \
 | |
|     && \
 | |
|     pip install --no-cache-dir --no-binary :all: platformio && \
 | |
|     platformio settings set enable_telemetry No
 | |
| 
 | |
| COPY docker/platformio-esp8266.ini /pio/platformio.ini
 | |
| RUN platformio run -d /pio; rm -rf /pio
 | |
| 
 | |
| COPY . .
 | |
| RUN pip install --no-cache-dir --no-binary :all: -e .
 | |
| 
 | |
| CMD ["esphomeyaml", "/config/esphomeyaml", "dashboard"]
 |