mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
14 lines
215 B
Docker
14 lines
215 B
Docker
FROM python:3.5
|
|
|
|
RUN apt-get update
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --no-cache-dir pytest pytest-cov
|
|
|
|
COPY . /usr/src/app/
|
|
|
|
RUN python setup.py develop
|