Skip to content

Instantly share code, notes, and snippets.

View saikishandasari's full-sized avatar

Saikishan Dasari saikishandasari

  • Los Angeles, California
View GitHub Profile
@saikishandasari
saikishandasari / Dockerfile
Created June 24, 2019 05:25
Custom runtime to install pyodbc on Google App Engine
# 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