17 lines
		
	
	
		
			253 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			253 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
ARG BASE_IMAGE
 | 
						|
FROM $BASE_IMAGE
 | 
						|
 | 
						|
RUN apk add --no-cache bash
 | 
						|
 | 
						|
ADD docker/scripts/install-dependencies.sh /
 | 
						|
RUN /install-dependencies.sh
 | 
						|
 | 
						|
ADD . /openwebrx
 | 
						|
 | 
						|
WORKDIR /openwebrx
 | 
						|
 | 
						|
VOLUME /config
 | 
						|
 | 
						|
ENTRYPOINT [ "/openwebrx/docker/scripts/run.sh" ]
 | 
						|
EXPOSE 8073
 |