mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-03 04:10:49 +08:00
13 lines
330 B
Docker
13 lines
330 B
Docker
FROM public.ecr.aws/lambda/python:3.10
|
|
|
|
RUN yum update -y && \
|
|
yum install -y gcc python3-devel && \
|
|
yum clean all
|
|
|
|
ADD requirements.txt .
|
|
RUN pip install -r requirements.txt && rm requirements.txt
|
|
RUN pip install mangum==16.0.0
|
|
COPY pr_agent/ ${LAMBDA_TASK_ROOT}/pr_agent/
|
|
|
|
CMD ["pr_agent.servers.serverless.serverless"]
|