mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-09 05:19:32 +08:00
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
IMAGE_NAME="openclaw-sandbox:bookworm-slim"
|
|
|
|
docker build -t "${IMAGE_NAME}" -f Dockerfile.sandbox .
|
|
echo "Built ${IMAGE_NAME}"
|