6 lines
192 B
Bash
6 lines
192 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Build BEVFusion Docker image with explicit Docker Hub registry
|
||
|
|
podman build --pull-always \
|
||
|
|
--from https://mirror.baidubce.com/cuda:11.3.1-devel-ubuntu20.04 \
|
||
|
|
-t bevfusion .
|