2021-09-06 11:33:39 +00:00
|
|
|
# docker build -t clickhouse/python-bottle .
|
2020-06-01 17:16:09 +00:00
|
|
|
# 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
|