mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Add code, have fun!
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM python:3.5
|
||||
|
||||
RUN apt-get update && apt-get -y install vim
|
||||
|
||||
RUN mkdir -p /usr/src/app
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
RUN pip install --upgrade pip
|
||||
RUN pip install --no-cache-dir pytest pytest-cov
|
||||
RUN pip install --no-cache-dir ipython ipdb
|
||||
|
||||
COPY . /usr/src/app/
|
||||
|
||||
RUN python setup.py develop
|
||||
Reference in New Issue
Block a user