ClickHouse/docker/test/integration/resolver/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
197 B
Docker
Raw Normal View History

2021-09-06 11:33:39 +00:00
# docker build -t clickhouse/python-bottle .
# Helper docker container to run python bottle apps
FROM python:3
2024-07-03 19:58:18 +00:00
COPY requirements.txt /
RUN python -m pip install --no-cache-dir -r requirements.txt