mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 04:32:33 +00:00
7 lines
197 B
Docker
7 lines
197 B
Docker
# docker build -t clickhouse/python-bottle .
|
|
# Helper docker container to run python bottle apps
|
|
|
|
FROM python:3
|
|
COPY requirements.txt /
|
|
RUN python -m pip install --no-cache-dir -r requirements.txt
|