mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7 lines
87 B
Bash
7 lines
87 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
mount -t debugfs none /sys/kernel/debug/
|
||
|
exec "$@"
|