19 lines
863 B
Docker
19 lines
863 B
Docker
# Authenticate to a public registry: aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws
|
|
FROM public.ecr.aws/lambda/python:3.9-x86_64
|
|
|
|
# Copy function code
|
|
COPY app.py ${LAMBDA_TASK_ROOT}
|
|
COPY logging.conf ${LAMBDA_TASK_ROOT}
|
|
COPY requirements.txt .
|
|
RUN mkdir -p ${LAMBDA_TASK_ROOT}/common
|
|
COPY common/constant.py ${LAMBDA_TASK_ROOT}/common/
|
|
COPY common/enum.py ${LAMBDA_TASK_ROOT}/common/
|
|
COPY common/exception_handler.py ${LAMBDA_TASK_ROOT}/common/
|
|
COPY common/request_wrapper.py ${LAMBDA_TASK_ROOT}/common/
|
|
COPY common/response_wrapper.py ${LAMBDA_TASK_ROOT}/common/
|
|
|
|
# Install dependencies
|
|
RUN pip install --no-cache-dir -r requirements.txt --target "${LAMBDA_TASK_ROOT}"
|
|
|
|
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
|
|
CMD [ "app.handler" ] |