mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
12 lines
92 B
Bash
12 lines
92 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
(
|
||
|
cd /wireguard/src
|
||
|
make module
|
||
|
make module-install
|
||
|
make clean
|
||
|
)
|
||
|
|
||
|
exec $@
|