mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
14 lines
243 B
Plaintext
14 lines
243 B
Plaintext
FROM python:3.5
|
|
|
|
RUN apt-get update && apt-get install -y python3.4 vim
|
|
|
|
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]
|
|
RUN bigchaindb -y configure
|