0
0
mirror of https://github.com/darkk/redsocks.git synced 2025-08-27 04:05:31 +00:00
redsocks/tests/build
Leonid Evdokimov aa6c7500aa Add smoke tests
2016-04-12 12:16:28 +03:00

11 lines
203 B
Bash
Executable File

#!/bin/bash -ex
(cd .. && make)
cp -a ../redsocks ./regw/redsocks
for img in *; do
if [ -d "$img" -a -f "$img/Dockerfile" ]; then
sudo docker build -t redsocks/"$img" ./"$img"/
fi
done