fix: missing git binary on lambda dockerfile

This commit is contained in:
Diogo Simoes
2024-03-26 23:58:07 +00:00
parent d250cb46f4
commit 0241fe5c13

View File

@ -1,7 +1,7 @@
FROM public.ecr.aws/lambda/python:3.10 FROM public.ecr.aws/lambda/python:3.10
RUN yum update -y && \ RUN yum update -y && \
yum install -y gcc python3-devel && \ yum install -y gcc python3-devel git && \
yum clean all yum clean all
ADD pyproject.toml requirements.txt . ADD pyproject.toml requirements.txt .