Skip to content

Commit

Permalink
Create Dockerfile.kinesis
Browse files Browse the repository at this point in the history
  • Loading branch information
gvelez17 authored May 22, 2024
1 parent 27582ac commit 65e640e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions logs-to-tsdb/Dockerfile.kinesis
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM public.ecr.aws/lambda/python:3.10

ENV LAMBDA_TASK_ROOT /var/task

WORKDIR ${LAMBDA_TASK_ROOT}

COPY requirements.txt ${LAMBDA_TASK_ROOT}

COPY kinesis-lambda.py ${LAMBDA_TASK_ROOT}

RUN pip install -r requirements.txt

CMD [ "kinesis-lambda.handler" ]

0 comments on commit 65e640e

Please sign in to comment.