Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: pin the parent images for Java8 and Go1.x runtimes #102

Merged
merged 1 commit into from
Aug 29, 2023
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
4 changes: 3 additions & 1 deletion build-image-src/Dockerfile-go1x
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM public.ecr.aws/lambda/go:1
# reset to the latest emulation image after the raised issue got solved.
# FROM public.ecr.aws/lambda/go:1
FROM public.ecr.aws/lambda/go:1.2023.08.02.10

RUN yum groupinstall -y development && \
yum install -d1 -y \
Expand Down
4 changes: 3 additions & 1 deletion build-image-src/Dockerfile-java8
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM public.ecr.aws/lambda/java:8
# reset to the latest emulation image after the raised issue got solved.
# FROM public.ecr.aws/lambda/java:8
FROM public.ecr.aws/lambda/java:8.2023.08.02.10

RUN yum groupinstall -y development && \
yum install -d1 -y \
Expand Down
Loading