You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					20 lines
				
				556 B
			
		
		
			
		
	
	
					20 lines
				
				556 B
			| 
								 
											5 years ago
										 
									 | 
							
								#!/bin/bash -e
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
							 | 
						||
| 
								 | 
							
								OP_ROOT="$DIR/../../"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								if [ -z "$BUILD" ]; then
							 | 
						||
| 
								 | 
							
								  docker pull ghcr.io/commaai/openpilot-base:latest
							 | 
						||
| 
								 | 
							
								else
							 | 
						||
| 
								 | 
							
								  docker build --cache-from ghcr.io/commaai/openpilot-base:latest -t ghcr.io/commaai/openpilot-base:latest -f $OP_ROOT/Dockerfile.openpilot_base .
							 | 
						||
| 
								 | 
							
								fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								docker run \
							 | 
						||
| 
								 | 
							
								       -it \
							 | 
						||
| 
								 | 
							
								       --rm \
							 | 
						||
| 
								 | 
							
								       --volume $OP_ROOT:/tmp/openpilot \
							 | 
						||
| 
								 | 
							
								       --workdir /tmp/openpilot \
							 | 
						||
| 
								 | 
							
								       --env PYTHONPATH=/tmp/openpilot \
							 | 
						||
| 
								 | 
							
								       ghcr.io/commaai/openpilot-base:latest \
							 | 
						||
| 
								 | 
							
								       /bin/bash
							 |