11 lines
238 B
Bash
Executable File
11 lines
238 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
RELEASES="trusty xenial bionic focal jammy noble"
|
|
|
|
export BUILDKIT_PROGRESS=plain
|
|
|
|
for release in $RELEASES ; do
|
|
docker pull ubuntu:${release}
|
|
docker build -t extbuilder-${release} -f Dockerfile.${release} .
|
|
done
|