Files
stacks-puppet-node/Dockerfile
Aaron Blankstein d7917fd737 fix dockerfile
2018-04-25 16:44:37 -04:00

17 lines
373 B
Docker

FROM ubuntu:xenial
WORKDIR /src/blockstack
# Install dependencies from apt
RUN apt-get -y update && \
apt-get install -y python-pip python-dev libssl-dev libffi-dev rng-tools libgmp3-dev lsof
# Copy all files from the repo into the container
COPY . .
# Upgrade pip and install pyparsing
RUN pip install pyparsing
# Install Blockstack from source
RUN pip install .