mirror of
https://github.com/moltbot/moltbot.git
synced 2026-03-07 22:44:16 +00: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}"
|