mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-06-15 09:07:47 +08:00
# 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.
12 lines
395 B
Docker
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
|