mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-09 22:37:47 +08:00
17 lines
397 B
Docker
17 lines
397 B
Docker
FROM ubuntu:xenial
|
|
|
|
WORKDIR /src/blockstack
|
|
|
|
# Install dependancies from apt
|
|
RUN apt-get -y update
|
|
RUN 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 --upgrade pip && pip install pyparsing
|
|
|
|
# Install Blockstack from source
|
|
RUN pip install .
|