Skip to content

Instantly share code, notes, and snippets.

@drorata
Created September 1, 2017 14:48
Show Gist options
  • Select an option

  • Save drorata/382fd412fdb65b793fbd7033bd0c4fc4 to your computer and use it in GitHub Desktop.

Select an option

Save drorata/382fd412fdb65b793fbd7033bd0c4fc4 to your computer and use it in GitHub Desktop.
Install pymssql in a Docker contrainer
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
@Shadyeb
Copy link

Shadyeb commented Sep 13, 2022

i have been struggling for 2 days because of this freetds-dev
thanks man

@drorata
Copy link
Author

drorata commented Sep 13, 2022

My pleasure @Shadyeb.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment