* bump cereal * remove that * pull cl image * lil docker cleanup old-commit-hash: 39da6912ea0b8db16d3f96f289f723452e540ab7
11 lines
283 B
Bash
Executable File
11 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR/../../
|
|
|
|
docker pull ghcr.io/commaai/openpilot-base-cl:latest
|
|
docker build \
|
|
--cache-from ghcr.io/commaai/openpilot-sim:latest \
|
|
-t ghcr.io/commaai/openpilot-sim:latest \
|
|
-f tools/sim/Dockerfile.sim .
|