File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 1+ # The runtime tag must match the version of Python specified in the Pipfile.
12FROM amazon/aws-lambda-python:3.9 AS install-stage
23
34# Install the Python packages necessary to install the Lambda dependencies.
@@ -20,6 +21,7 @@ COPY build/Pipfile build/Pipfile.lock ./
2021# underlying pip calls.
2122RUN pipenv sync --system --extra-pip-args="--no-cache-dir --target ${LAMBDA_TASK_ROOT}"
2223
24+ # The runtime tag must match the version of Python specified in the Pipfile.
2325FROM amazon/aws-lambda-python:3.9 AS build-stage
2426
2527# ##
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ verify_ssl = true
44name = " pypi"
55
66[requires ]
7+ # This must match the version of the Python runtime specified in the Dockerfile.
78python_version = " 3.9"
89
910[packages ]
You can’t perform that action at this time.
0 commit comments