Skip to content

Commit 7feec9f

Browse files
authored
fix: update public ecr registry alias (#13)
1 parent 0e28fa3 commit 7feec9f

File tree

5 files changed

+313
-192
lines changed

5 files changed

+313
-192
lines changed

.github/workflows/build-and-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
--build-arg HTTP_CLI_VERSION=${{ env.HTTP_CLI_VERSION }} \
5353
--target base \
5454
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:base \
55-
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:base \
55+
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:base \
5656
--push \
5757
.
5858
env:
@@ -149,8 +149,8 @@ jobs:
149149
ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:$VARIANT \
150150
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:$VARIANT-latest
151151
docker buildx imagetools create \
152-
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:$VARIANT \
153-
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:$VARIANT-latest
152+
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:$VARIANT \
153+
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:$VARIANT-latest
154154
done
155155
fi
156156
shell: bash

.github/workflows/build-installers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
--provenance=false \
5050
--target awscurl-installer \
5151
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:awscurl-installer \
52-
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:awscurl-installer \
52+
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:awscurl-installer \
5353
--push \
5454
-f - . << 'EOF'
5555
FROM public.ecr.aws/lambda/provided:al2023 AS awscurl-installer
@@ -66,7 +66,7 @@ jobs:
6666
--provenance=false \
6767
--target awscli-installer \
6868
--tag ghcr.io/${{ github.repository_owner }}/lambda-shell-runtime:awscli-installer \
69-
--tag public.ecr.aws/j5r7n1v7/lambda-shell-runtime:awscli-installer \
69+
--tag public.ecr.aws/l9f6r9f5/lambda-shell-runtime:awscli-installer \
7070
--push \
7171
-f - . << 'EOF'
7272
FROM public.ecr.aws/lambda/provided:al2023 AS awscli-installer

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ ghcr.io/ql4b/lambda-shell-runtime:micro
5757
ghcr.io/ql4b/lambda-shell-runtime:full
5858

5959
# From AWS Public ECR
60-
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:tiny
61-
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:micro
62-
public.ecr.aws/j5r7n1v7/lambda-shell-runtime:full
60+
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:tiny
61+
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:micro
62+
public.ecr.aws/l9f6r9f5/lambda-shell-runtime:full
6363
```
6464

6565
## Examples

build-enhanced

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ while [ $# -gt 0 ]; do
3939
shift
4040
;;
4141
--public-ecr)
42-
REGISTRIES="$REGISTRIES public.ecr.aws/j5r7n1v7"
42+
REGISTRIES="$REGISTRIES public.ecr.aws/l9f6r9f5"
4343
shift
4444
;;
4545
*)

0 commit comments

Comments
 (0)