We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d4cc57c + e8171b0 commit a495769Copy full SHA for a495769
docker/Dockerfile.lambda
@@ -1,10 +1,10 @@
1
-FROM public.ecr.aws/lambda/python:3.10
+FROM public.ecr.aws/lambda/python:3.12
2
3
-RUN yum update -y && \
4
- yum install -y gcc python3-devel git && \
5
- yum clean all
+RUN dnf update -y && \
+ dnf install -y gcc python3-devel git && \
+ dnf clean all
6
7
-ADD pyproject.toml requirements.txt .
+ADD pyproject.toml requirements.txt ./
8
RUN pip install --no-cache-dir . && rm pyproject.toml
9
RUN pip install --no-cache-dir mangum==0.17.0
10
COPY pr_agent/ ${LAMBDA_TASK_ROOT}/pr_agent/
0 commit comments