Skip to content

Instantly share code, notes, and snippets.

@beratdogan
Last active August 29, 2015 14:22
Show Gist options
  • Save beratdogan/f9ef4bad7bb9e63a80a2 to your computer and use it in GitHub Desktop.
Save beratdogan/f9ef4bad7bb9e63a80a2 to your computer and use it in GitHub Desktop.
Sample Dockerfile for Python 2.7 + lxml
FROM python:2.7
ENV PYTHONUNBUFFERED 1
RUN apt-get update && apt-get -y install libxml2-dev libxslt1-dev libxslt-dev python-lxml
RUN pip install lxml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment