bigchaindb/Dockerfile

13 lines
179 B
Docker
Raw Normal View History

2016-02-10 19:55:33 +01:00
FROM python:3.5
2016-02-10 20:16:50 +01:00
RUN apt-get update
2016-02-10 19:55:33 +01:00
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN pip install --upgrade pip
COPY . /usr/src/app/
RUN pip install --no-cache-dir -e .[dev]