Last active
February 22, 2017 09:18
-
-
Save lu911/6ff146d6283c2f9fa56f5cf0ef54989d to your computer and use it in GitHub Desktop.
ddingdon-base
This file contains 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 ubuntu:16.04 | |
MAINTAINER Loup <[email protected]> | |
# Install pyenv | |
ENV PYENV_ROOT /root/.pyenv | |
ENV PATH /root/.pyenv/shims:/root/.pyenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
RUN apt-get update && \ | |
apt-get install -y git mercurial build-essential libssl-dev libbz2-dev libreadline-dev libsqlite3-dev curl vim && \ | |
curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash | |
RUN pyenv install 3.5.2 | |
RUN pyenv global 3.5.2 | |
RUN pyenv rehash | |
# Install ubuntu libraries | |
RUN apt-get install -y make \ | |
python-dev \ | |
build-essential \ | |
libssl-dev \ | |
zlib1g-dev \ | |
libbz2-dev \ | |
libreadline-dev \ | |
libsqlite3-dev \ | |
libncurses5-dev \ | |
libncursesw5-dev \ | |
libpq-dev \ | |
libssl-dev \ | |
imagemagick \ | |
libmagickwand-dev \ | |
libffi-dev \ | |
libjpeg-dev \ | |
libxml2-dev \ | |
libxslt1-dev | |
# Instal uwsgi | |
RUN pip install uwsgi | |
COPY ./requirements.txt /tmp/requirements.txt | |
RUN pip install --upgrade pip | |
RUN pip install -r /tmp/requirements.txt | |
RUN rm /tmp/requirements.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment