bigchaindb/Dockerfile-dev
z-bowen 2a3d728d84 Problem: Need a method to initiate a new upsert-validator election
Solution: Added subcommand `new` to `upsert_validator`
2018-08-08 10:48:17 +02:00

10 lines
213 B
Plaintext

FROM python:3.6
LABEL maintainer "dev@bigchaindb.com"
RUN apt-get update \
&& apt-get install -y vim \
&& pip install -U pip \
&& pip install pynacl \
&& apt-get autoremove \
&& apt-get clean