2025-04-01 10:38:02 +09:00

12 lines
203 B
Bash
Executable File

#!/bin/bash
_image="ee-msi-build"
_container="ee-build"
docker build -t $_image .
docker run --rm -d --name $_container $_image sleep 100
docker cp $_container:/tmp/scratch .
docker stop $_container