mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

* Problem: we don't have any tests for malicious strings Solution: Use a parameterized test that fuzzes over a library of potentially hazardous strings * Needed to update the Dockerfile to install blns * Removed unnecessary import from Dockerfile-dev * Made the conditions under which the test expects an error more explicit * Improved reporting in case of a bad status code * Removed some over-zealous assertions. * Removed `sent_transaction` from assertation error response * *Problem: blns was removed as a dependency while fixing a merge conflict Solution: added it back to the Dockerfile * *Problem: made a typo when adding blns to the Dockerfile Solution: fixed the typo
38 lines
998 B
Plaintext
38 lines
998 B
Plaintext
ARG python_version=3.6
|
|
FROM python:${python_version}
|
|
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
|
|
|
|
ARG backend
|
|
ARG abci_status
|
|
|
|
# When developing with Python in a docker container, we are using PYTHONBUFFERED
|
|
# to force stdin, stdout and stderr to be totally unbuffered and to capture logs/outputs
|
|
ENV PYTHONUNBUFFERED 0
|
|
|
|
ENV BIGCHAINDB_DATABASE_PORT 27017
|
|
ENV BIGCHAINDB_DATABASE_BACKEND $backend
|
|
ENV BIGCHAINDB_SERVER_BIND 0.0.0.0:9984
|
|
ENV BIGCHAINDB_WSSERVER_HOST 0.0.0.0
|
|
ENV BIGCHAINDB_WSSERVER_SCHEME ws
|
|
|
|
ENV BIGCHAINDB_WSSERVER_ADVERTISED_HOST 0.0.0.0
|
|
ENV BIGCHAINDB_WSSERVER_ADVERTISED_SCHEME ws
|
|
|
|
ENV BIGCHAINDB_TENDERMINT_PORT 26657
|
|
|
|
ENV BIGCHAINDB_CI_ABCI ${abci_status}
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
COPY . /usr/src/app/
|
|
WORKDIR /usr/src/app
|
|
RUN pip install --no-cache-dir --process-dependency-links -e .[dev]
|
|
RUN bigchaindb -y configure
|
|
|