コードは上記gistのほぼコピペですが、最小限のインストールになるよう少し修正しました。 私は「ODBC Driver 17 for SQL Server」が必要だったので、iniファイルには17を指定しています。 FROM amazon/aws-lambda-python:3.9 ENTRYPOINT [] WORKDIR /root # Get development tools to enable compiling RUN yum -y update RUN yum -y groupinstall "Development Tools" # Get unixODBC and install it RUN yum -y install tar gzip RUN curl ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.11.tar.g