File size: 625 Bytes
bfea304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM public.ecr.aws/lambda/python:3.12

# Copy requirements.txt
COPY requirements.txt ${LAMBDA_TASK_ROOT}

# Install the specified packages
RUN pip install -r requirements.txt

# Install OpenCV dependencies
# RUN yum install -y libSM libXrender libXext

# Copy function code
COPY main.py ${LAMBDA_TASK_ROOT}/
COPY torch ${LAMBDA_TASK_ROOT}/torch/
COPY local_test.py ${LAMBDA_TASK_ROOT}/

# Ensure the model files have correct permissions
RUN chmod -R 755 ${LAMBDA_TASK_ROOT}/torch/
RUN chmod -R 755 ${LAMBDA_TASK_ROOT}
RUN chmod -R 755 ${LAMBDA_TASK_ROOT}/

# Set the CMD to run the test script
CMD [ "main.lambda_handler" ]