mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
c533656483
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
7 lines
87 B
Bash
Executable File
7 lines
87 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
|
|
mount -t debugfs none /sys/kernel/debug/
|
|
exec "$@"
|