Skip to content
Open
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: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Official Docker images are in the form library/<app> while
# non-official images are in the form <user>/<app>.
FROM docker.io/amazon/aws-lambda-python:3.9 AS install-stage
FROM public.ecr.aws/lambda/python:3.9 AS install-stage

# Install the Python packages necessary to install the Lambda dependencies.
RUN python3 -m pip install --no-cache-dir \
Expand All @@ -29,7 +29,7 @@ RUN pipenv sync --system --extra-pip-args="--no-cache-dir --target ${LAMBDA_TASK
#
# Official Docker images are in the form library/<app> while
# non-official images are in the form <user>/<app>.
FROM docker.io/amazon/aws-lambda-python:3.9 AS build-stage
FROM public.ecr.aws/lambda/python:3.9 AS build-stage

###
# For a list of pre-defined annotation keys and value types see:
Expand Down
Loading