This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load the base image provided by Google | |
FROM gcr.io/google-appengine/python | |
# Install tdsodbc & unixodbc | |
RUN apt-get update | |
RUN apt-get install -y tdsodbc unixodbc-dev | |
RUN apt install unixodbc-bin -y | |
RUN apt-get clean -y | |
ADD odbcinst.ini /etc/odbcinst.ini |