mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
10 lines
213 B
Plaintext
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
|