Skip to content
Snippets Groups Projects
unittest.Dockerfile 157 B
FROM python:3.8

RUN pip install satella snakehouse nose2 wheel ujson

ADD . /app
WORKDIR /app
RUN python setup.py build_ext --inplace

CMD ["nose2", "-vv"]