Skip to content

Commit

Permalink
GH-6 Add missing Dockerfile for Letterboxd Lambda fn
Browse files Browse the repository at this point in the history
  • Loading branch information
blairnangle committed Nov 21, 2023
1 parent 54b5d72 commit 2122e74
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile.letterboxd
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM public.ecr.aws/lambda/python:3.11

COPY requirements.txt .
RUN pip3 install -r requirements.txt --target "${LAMBDA_TASK_ROOT}"

COPY src/common.py ${LAMBDA_TASK_ROOT}
COPY src/letterboxd.py ${LAMBDA_TASK_ROOT}

CMD [ "letterboxd.lambda_handler" ]

0 comments on commit 2122e74

Please sign in to comment.