2 Star 0 Fork 0

mirrors_influxdata/kapacitor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile_build_ubuntu64 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
FROM quay.io/influxdb/builder:kapacitor-20240611
# This dockerfile is capabable of performing all
# build/test/package/deploy actions needed for Kapacitor.
MAINTAINER support@influxdb.com
# Install protobuf3 python library
# NOTE: PROTO_VERSION env var is inherited from the parent builder image.
RUN wget -q https://github.com/google/protobuf/releases/download/v${PROTO_VERSION}/protobuf-python-${PROTO_VERSION}.tar.gz \
&& tar -xf protobuf-python-${PROTO_VERSION}.tar.gz \
&& cd protobuf-${PROTO_VERSION}/python \
&& python2 setup.py install \
&& python3 setup.py install \
&& cd ../../ \
&& rm -rf /protobuf-${PROTO_VERSION} protobuf-python-${PROTO_VERSION}.tar.gz
ENV PROJECT_DIR /kapacitor
RUN mkdir -p $PROJECT_DIR
WORKDIR $PROJECT_DIR
# Configure local git
RUN git config --global --add safe.directory $PROJECT_DIR
RUN git config --global user.email "support@influxdb.com"
RUN git config --global user.Name "Docker Builder"
ENTRYPOINT [ "/kapacitor/build.py" ]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_influxdata/kapacitor.git
git@gitee.com:mirrors_influxdata/kapacitor.git
mirrors_influxdata
kapacitor
kapacitor
master

搜索帮助