How to install pyodbc on Dockerfile – Debian
I'm trying to install pyodbc on Django to access Sql Server but the Docker image had no be built. The Dockerfile: FROM --platform=linux/amd64 python:3.8-slim-buster ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 ENV DEBIAN_FRONTEND noninteractive RUN apt-get update -y && apt-get install…