Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
--build-arg HTTP_CLI_VERSION=${{ env.HTTP_CLI_VERSION }} \
--target base \
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:base \
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:base \
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:base \
--push \
.
env:
Expand Down Expand Up @@ -149,8 +149,8 @@ jobs:
ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:$VARIANT \
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:$VARIANT-latest
docker buildx imagetools create \
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:$VARIANT \
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:$VARIANT-latest
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:$VARIANT \
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:$VARIANT-latest
done
fi
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
--provenance=false \
--target awscurl-installer \
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:awscurl-installer \
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:awscurl-installer \
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:awscurl-installer \
--push \
-f - . << 'EOF'
FROM public.ecr.aws/lambda/provided:al2023 AS awscurl-installer
Expand All @@ -66,7 +66,7 @@ jobs:
--provenance=false \
--target awscli-installer \
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:awscli-installer \
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:awscli-installer \
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:awscli-installer \
--push \
-f - . << 'EOF'
FROM public.ecr.aws/lambda/provided:al2023 AS awscli-installer
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ ghcr.io/ql4b/lambda-shell-runtime:micro
ghcr.io/ql4b/lambda-shell-runtime:full

# From AWS Public ECR
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:tiny
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:micro
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:full
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:tiny
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:micro
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:full
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion build-enhanced
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ while [ $# -gt 0 ]; do
shift
;;
--public-ecr)
REGISTRIES="$REGISTRIES public.ecr.aws/j5r7n1v7"
REGISTRIES="$REGISTRIES public.ecr.aws/l9f6r9f5"
shift
;;
*)
Expand Down
Loading