FROM python:3
WORKDIR /workdir
COPY . .
RUN pip install \
    black \
    codecov \
    data-science-types \
    flake8 \
    flit \
    mutmut \
    mypy \
    numpy \
    pylint \
    pytest \
    pytest-cov
