mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
4881871bd0
This makes it easier to test all the code around the building of an image as you can just build one image.
18 lines
185 B
Bash
Executable File
18 lines
185 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
|
|
unstable
|
|
"
|
|
|
|
for DIST in $DISTS; do
|
|
./buildone "$DIST"
|
|
done
|