How to install msodbcsql in Debian-based Dockerfile with an Apple Silicon host?
What I'm trying to do Install Microsoft's ODBC driver into a Docker image using the following Dockerfile and the docker build command.: FROM public.ecr.aws/docker/library/python:3.9.10-slim-buster RUN apt-get update RUN apt-get install -y curl gnupg RUN curl -sSL https://packages.microsoft.com/keys/microsoft.asc | apt-key add…