ghjfghj
Some checks failed
Build Alpine RootFS and Docker Image (latest) / build-rootfs (push) Successful in 6s
Build Alpine RootFS and Docker Image (latest) / push-tarball (push) Failing after 2s
Build Alpine RootFS and Docker Image (latest) / push-docker (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-changelog (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / update-build-info (push) Has been skipped

This commit is contained in:
2025-07-06 09:26:46 -07:00
parent 1aa7cc1c33
commit 6498807b1e

View File

@@ -27,23 +27,11 @@ jobs:
- name: Build Alpine Base Image
run: |
docker build -t alpine-builder .
mkdir -p latest
container_id=$(docker create alpine-builder)
docker cp "$container_id":/output/alpine-base.tar.gz ./latest/alpine-base.tar.gz
docker rm "$container_id"
# - name: Build custom Alpine builder image
# run: |
# docker build -t alpine-builder:latest .
# - name: Run Alpine build scripts
# run: |
# mkdir -p latest
# bash base-image-script/alpine-base_pt1.sh
# - name: Run Alpine build scripts inside builder container
# run: |
# docker run --rm --privileged -v "$PWD":/workspace -w /workspace alpine-builder bash base-image-script/alpine-base_pt1.sh
- name: Show tarball
run: ls -lh ${{ env.OUTPUT_TAR }}