mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-17 09:37:49 +01:00
12 lines
92 B
Bash
Executable File
12 lines
92 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
(
|
|
cd /wireguard/src
|
|
make module
|
|
make module-install
|
|
make clean
|
|
)
|
|
|
|
exec $@
|