简体   繁体   中英

Install pyodbc in docker image

I am using https://hub.docker.com/r/tiangolo/meinheld-gunicorn-flask/ to host a flask api.

To deploy I use a docker image which I host on azure web app services for container. I am trying to connect my flask application to Azure SQL server. But I have trouble installing the correct odbc drivers and pyodbc.

My docker file:

FROM ubuntu:16.04
# apt-get and system utilities
RUN apt-get update && apt-get install -y \
    curl apt-utils apt-transport-https debconf-utils gcc build-essential g++-5\
    && rm -rf /var/lib/apt/lists/*
# adding custom MS repository
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
RUN curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources.list.d/mssql-release.list

# install SQL Server drivers
RUN apt-get update && ACCEPT_EULA=Y apt-get -y install msodbcsql17
RUN apt-get -y install unixodbc unixodbc-dev

# install necessary locales
RUN apt-get update && apt-get install -y locales \
    && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
    && locale-gen


FROM tiangolo/meinheld-gunicorn:python3.7
ENV LISTEN_PORT=80
EXPOSE 80

COPY /app /app

# Uncomment to install additional requirements from a requirements.txt file
COPY requirements.txt /


RUN pip install --no-cache-dir -U pip
RUN pip install --no-cache-dir -r /requirements.txt

Getting the error:

gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -DPYODBC_VERSION=4.0.25 -I/usr/local/include/python3.7m -c src/buffer.cpp -o build/temp.linux-x86_64-3.7/src/buffer.o -Wno-write-strings
2019-01-28T23:58:42.5006898Z     In file included from src/buffer.cpp:12:0:
2019-01-28T23:58:42.5006979Z     src/pyodbc.h:56:17: fatal error: sql.h: No such file or directory
2019-01-28T23:58:42.5007040Z      #include <sql.h>
2019-01-28T23:58:42.5007105Z                      ^
2019-01-28T23:58:42.5007155Z     compilation terminated.
2019-01-28T23:58:42.5007377Z     error: command 'gcc' failed with exit status 1

I think its because unixodbc is not correctly installed?

The second FROM line probably means that later actions are performed with a image that doesn't have those libararies that are needed to compile pyodbc.

FROM tiangolo/meinheld-gunicorn:python3.7
ENV LISTEN_PORT=80
EXPOSE 80

For more information, https://blog.alexellis.io/mutli-stage-docker-builds/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM