mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
dockerTools.buildImage: unpack base image layers in correct order
(cherry picked from commit 69ffb0004a)
This commit is contained in:
committed by
github-actions[bot]
parent
842f42399c
commit
f75a48ba1b
@@ -235,7 +235,7 @@ rec {
|
||||
# Unpack all of the parent layers into the image.
|
||||
lowerdir=""
|
||||
extractionID=0
|
||||
for layerTar in $(tac layer-list); do
|
||||
for layerTar in $(cat layer-list); do
|
||||
echo "Unpacking layer $layerTar"
|
||||
extractionID=$((extractionID + 1))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user