Skip to content

Commit

Permalink
fix: missing requirements.txt on lambda dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Diogo Simoes committed Mar 26, 2024
1 parent 26c4a98 commit d250cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.lambda
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN yum update -y && \
yum install -y gcc python3-devel && \
yum clean all

ADD pyproject.toml .
ADD pyproject.toml requirements.txt .
RUN pip install . && rm pyproject.toml
RUN pip install mangum==0.17.0
COPY pr_agent/ ${LAMBDA_TASK_ROOT}/pr_agent/
Expand Down

0 comments on commit d250cb4

Please sign in to comment.