Add new Docker file to images.json

This commit is contained in:
Ivan Lezhankin 2020-04-24 21:40:43 +03:00
parent 8fbeb345ae
commit 72dcaf13a9
2 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,7 @@
"docker/test/stateful": "yandex/clickhouse-stateful-test",
"docker/test/stateful_with_coverage": "yandex/clickhouse-stateful-test-with-coverage",
"docker/test/stateless": "yandex/clickhouse-stateless-test",
"docker/test/stateless_pytest": "yandex/clickhouse-stateless-pytest",
"docker/test/stateless_with_coverage": "yandex/clickhouse-stateless-test-with-coverage",
"docker/test/unit": "yandex/clickhouse-unit-test",
"docker/test/stress": "yandex/clickhouse-stress-test",

View File

@ -1,6 +1,11 @@
# docker build -t yandex/clickhouse-stateless-pytest .
FROM yandex/clickhouse-deb-builder
RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
python-pip \
python-setuptools
RUN pip install \
pytest \
pytest-html \