File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.13-slim-bullseye as python-build-stage
1+ FROM python:3.13-slim-bullseye AS python-build-stage
22WORKDIR /src
33
44RUN apt-get update && apt-get upgrade -y \
@@ -11,10 +11,10 @@ RUN pip install --isolated --no-cache-dir --no-input poetry \
1111 && poetry config virtualenvs.create false \
1212 && poetry install --no-interaction --without=dev
1313
14- FROM public.ecr.aws/lambda/python:3.13 as python-run-stage
14+ FROM public.ecr.aws/lambda/python:3.13 AS python-run-stage
1515
16- COPY --from=python-build-stage /usr/local/lib/python3.10 /site-packages /usr/local/lib/python3.10 /site-packages
17- ENV PYTHONPATH=/usr/local/lib/python3.10 /site-packages
16+ COPY --from=python-build-stage /usr/local/lib/python3.13 /site-packages /usr/local/lib/python3.13 /site-packages
17+ ENV PYTHONPATH=/usr/local/lib/python3.13 /site-packages
1818
1919COPY handler.py ${LAMBDA_TASK_ROOT}
2020COPY groups_read.py ${LAMBDA_TASK_ROOT}
You can’t perform that action at this time.
0 commit comments