Files
stacks-puppet-node/images/Dockerfile
Muneeb Ali 120ccfed31 # This is a combination of 3 commits.
# The first commit's message is:
re-organizing Docker files

# This is the 2nd commit message:

remove

# This is the 3rd commit message:

Revert "remove"

This reverts commit 0faad61f54b2f0a1cb87281667ab242daaa26126.
2015-03-11 15:45:56 -04:00

12 lines
395 B
Docker

FROM debian:jessie
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update && apt-get -y install python2.7 python-pip python-setuptools python-dev git-core build-essential
WORKDIR /tmp
RUN git clone https://github.com/openname/blockstore.git
RUN easy_install -U pip
RUN cd blockstore && pip install --upgrade -r requirements.txt
RUN pip install blockstore
WORKDIR /root
CMD blockstored start