reflect current package deps

This commit is contained in:
Lance Vick 2023-11-13 14:48:49 -08:00
parent 1496eeff32
commit 4e594f4ee3
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 11 additions and 12 deletions

View File

@ -4,30 +4,29 @@ out/bootstrap.oci.tgz:
docker build -t ocirep/bootstrap --output type=oci,dest=$@ packages/bootstrap
out/musl.oci.tgz: \
out/bootstrap.oci.tgz
docker build -t ocirep/musl --output type=oci,dest=$@ packages/musl
out/busybox.oci.tgz: \
out/bootstrap.oci.tgz \
docker build -t ocirep/busybox --output type=oci,dest=$@ packages/busybox
out/binutils.oci.tgz: \
out/bootstrap.oci.tgz \
out/musl.oci.tgz
docker build -t ocirep/musl --output type=oci,dest=$@ packages/musl
out/gcc.oci.tgz: \
out/bootstrap.oci.tgz
out/bootstrap.oci.tgz \
out/musl.oci.tgz
docker build -t ocirep/gcc --output type=oci,dest=$@ packages/gcc
out/glibc.oci.tgz: \
out/gcc.oci.tgz
docker build -t ocirep/glibc --output type=oci,dest=$@ packages/glibc
out/bash.oci.tgz: \
out/gcc.oci.tgz \
out/glibc.oci.tgz
docker build -t ocirep/bash --output type=oci,dest=$@ packages/bash
out/busybox.oci.tgz: \
out/gcc.oci.tgz \
out/glibc.oci.tgz
docker build -t ocirep/busybox --output type=oci,dest=$@ packages/busybox
out/go.oci.tgz: \
out/gcc.oci.tgz \
out/glibc.oci.tgz \
out/busybox.oci.tgz \
out/bash.oci.tgz
docker build -t ocirep/go --output type=oci,dest=$@ packages/go