mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
19 lines
201 B
Bash
Executable File
19 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build a minideb image for each supported dist
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
DISTS="jessie
|
|
stretch
|
|
buster
|
|
buster-snapshot
|
|
unstable
|
|
"
|
|
|
|
for DIST in $DISTS; do
|
|
./buildone "$DIST"
|
|
done
|