mirror of
https://github.com/grafana/grafana.git
synced 2025-01-16 11:42:35 -06:00
12 lines
203 B
Bash
12 lines
203 B
Bash
|
#!/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
|
||
|
|