diff --git a/Dockerfile b/Dockerfile index 1c3e0e6..a8a5c04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM public.ecr.aws/lambda/python:3.11 +RUN apt-get update && apt-get -y upgrade \ + && apt-get install gcc -y \ + && pip install --upgrade pip + RUN pip install 'poetry==1.8.3' COPY pyproject.toml poetry.lock ${LAMBDA_TASK_ROOT}