Skip to content

Instantly share code, notes, and snippets.

@lexman
Last active June 1, 2016 16:23
Show Gist options
  • Save lexman/88be2ce34b3743c5d77f to your computer and use it in GitHub Desktop.
Save lexman/88be2ce34b3743c5d77f to your computer and use it in GitHub Desktop.
Dockerfile for tuttle
FROM ubuntu:wily
MAINTAINER Lexman <tuttle@lexman.org>
RUN apt-get update && apt-get install -y python python-psycopg2 postgresql-client python-pip
RUN pip install --upgrade pip
RUN pip install https://github.com/lexman/tuttle/archive/master.zip
RUN chmod +x /usr/local/bin/tuttle*
VOLUME ["/project"]
WORKDIR /project
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment