Created
September 1, 2017 14:48
-
-
Save drorata/382fd412fdb65b793fbd7033bd0c4fc4 to your computer and use it in GitHub Desktop.
Install pymssql in a Docker contrainer
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
| FROM continuumio/miniconda3 | |
| COPY environment.yml /tmp | |
| RUN apt-get update && apt-get install -y \ | |
| freetds-dev \ | |
| python-dev \ | |
| build-essential \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN conda env create -f tmp/environment.yml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i have been struggling for 2 days because of this freetds-dev
thanks man