mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-28 17:54:24 +01:00
11 lines
321 B
Bash
11 lines
321 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Here we can add local setup steps for the finishing touches to our Docker build container.
|
||
|
# This can be setting symbolic links, e.g.
|
||
|
# sudo ln -s /disk2/stuff /stuff
|
||
|
# or triggering further scripts.
|
||
|
|
||
|
# We start a separate xterm/terminal, such that the container doesn't exit right away...
|
||
|
/usr/bin/xterm
|
||
|
|