mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 23:33:58 +08:00
11 lines
264 B
Bash
Executable File
11 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR/../../
|
|
|
|
docker pull ghcr.io/commaai/openpilot-base:latest
|
|
docker build \
|
|
--cache-from commaai/openpilot-sim:latest \
|
|
-t commaai/openpilot-sim:latest \
|
|
-f tools/sim/Dockerfile.sim .
|