dockerfiles/wireguard/entrypoint.sh

12 lines
92 B
Bash
Raw Normal View History

#!/bin/sh
set -e
(
cd /wireguard/src
make module
make module-install
make clean
)
exec $@