8 lines
171 B
Bash
Executable file
8 lines
171 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Helper script to facilitate debugging in a Dockerized environment
|
|
|
|
docker container run \
|
|
-v $(pwd):$(pwd) -w $(pwd) -i -t \
|
|
ubuntu:24.04 \
|
|
/bin/bash
|