15 lines
		
	
	
		
			391 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			391 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.5
 | |
| 
 | |
| ADD . /go-ethereum
 | |
| RUN \
 | |
|   apk add --update git go make gcc musl-dev linux-headers && \
 | |
|   (cd go-ethereum && make geth)                           && \
 | |
|   cp go-ethereum/build/bin/geth /geth                     && \
 | |
|   apk del git go make gcc musl-dev linux-headers          && \
 | |
|   rm -rf /go-ethereum && rm -rf /var/cache/apk/*
 | |
| 
 | |
| EXPOSE 8545
 | |
| EXPOSE 30303
 | |
| 
 | |
| ENTRYPOINT ["/geth"]
 |