mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 11:02:19 +08:00
dfb437648e
old-commit-hash: 5463469f71e7861ccfbbd4d09b8e4ae56b8d3e45
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 .
|