mirror of
https://github.com/clawdbot/clawdbot.git
synced 2026-01-31 11:27:45 +01:00
8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
IMAGE_NAME="clawdis-sandbox-browser:bookworm-slim"
|
|
|
|
docker build -t "${IMAGE_NAME}" -f Dockerfile.sandbox-browser .
|
|
echo "Built ${IMAGE_NAME}"
|