mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
14 lines
406 B
Docker
14 lines
406 B
Docker
|
FROM public.ecr.aws/lambda/python:3.9
|
||
|
|
||
|
# Copy function code
|
||
|
COPY app.py ${LAMBDA_TASK_ROOT}
|
||
|
|
||
|
# Install the function's dependencies using file requirements.txt
|
||
|
# from your project folder.
|
||
|
|
||
|
COPY requirements.txt .
|
||
|
RUN pip3 install -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" ]
|