File: build

package info (click to toggle)
redsocks 0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 592 kB
  • sloc: ansic: 6,196; python: 505; sh: 185; makefile: 96
file content (10 lines) | stat: -rwxr-xr-x 203 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/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