We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d20162 commit ff0c2d7Copy full SHA for ff0c2d7
runtimes/manifest-all-images.sh
@@ -6,10 +6,12 @@ export DIR=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
6
for runtime in $($DIR/get-all-runtimes.sh); do
7
image="mlupin/docker-lambda:${runtime}"
8
9
+ docker manifest rm $image || true
10
docker manifest create $image \
11
--amend ${image}-x86_64 \
12
--amend ${image}-arm64
13
14
+ docker manifest rm ${image}-build || true
15
docker manifest create ${image}-build \
16
--amend ${image}-build-x86_64 \
17
--amend ${image}-build-arm64
0 commit comments