Private
Public Access
0
0

feat(docker): add build and run shell scripts

This commit is contained in:
2026-06-03 08:23:40 -04:00
parent 46c66277b2
commit 36a6874e03
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# scripts/docker_build.sh
# Build the Manual Slop Docker image.
set -euo pipefail
cd "$(dirname "$0")/.."
docker build -t manual_slop:latest .
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# scripts/docker_run.sh
# Run the Manual Slop container.
set -euo pipefail
cd "$(dirname "$0")/.."
docker compose up -d