Skip to content

Commit 562c64f

Browse files
committed
Add script/docker utility.
1 parent 645309a commit 562c64f

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

script/docker

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
3+
# script/docker
4+
#
5+
# Run command in development container
6+
7+
set -euo pipefail
8+
9+
cd "$(dirname "$0")/.."
10+
11+
docker run --rm -ti -u root \
12+
-v "$(pwd)":/home/builder/workspace \
13+
-v /tmp:/tmp \
14+
-w /home/builder/workspace \
15+
giomba/ceda-rom-disassembly:1 \
16+
"$@"

0 commit comments

Comments
 (0)