123456789101112131415 |
- FROM reg.cestong.com.cn/cecf/pyflink:v1.18.1
- LABEL authors="yawyd"
- WORKDIR /app
- COPY pyproject.toml /app/
- COPY README.md /app/
- RUN poetry install --no-root
- COPY . /app/
- ENTRYPOINT ["python", "otel_sampled_clickhouse", "-ch_host", "${CH_HOST}", "-ch_port", "${CH_PORT}", \
- "-ch_user", "${CH_USER}", "-ch_password", "${CH_PASSWORD}", "-ch_dbname", "${CH_DBNAME}", "-kafka_brokers", \
- "${KAFKA_BROKERS}"]
|