File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed
Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ ENV ZOOKEEPER_HOME=/opt/zookeeper \
55
66ENV PYTHONPATH=/usr/local/lib/python3.7/site-packages/integration_library_builtIn
77
8+ RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.23/main" > /etc/apk/repositories && \
9+ echo "https://dl-cdn.alpinelinux.org/alpine/v3.23/community" >> /etc/apk/repositories
10+
811COPY backup-daemon.conf /etc/backup-daemon.conf
912COPY docker/requirements.txt ${ZOOKEEPER_HOME}/requirements.txt
1013COPY scripts/ ${ZOOKEEPER_HOME}/scripts/
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ RUN set -x && apk upgrade --available
159159RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" > /etc/apk/repositories \
160160 && echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
161161 && apk add --update --no-cache --upgrade \
162- pcre2
162+ pcre2 curl gnutls libcurl jq
163163
164164USER 1000:0
165165WORKDIR ${ZOOKEEPER_HOME}
Original file line number Diff line number Diff line change 1- FROM ghcr.io/netcracker/qubership-docker-integration-tests:main
1+ FROM ghcr.io/netcracker/qubership-docker-integration-tests:0.1.19
22
33ENV ROBOT_OUTPUT=${ROBOT_HOME}/output \
44 DISTR_DIR=/tmp/deps \
@@ -8,6 +8,9 @@ ENV ROBOT_OUTPUT=${ROBOT_HOME}/output \
88RUN mkdir -p ${ROBOT_HOME} \
99 && mkdir -p ${ROBOT_OUTPUT}
1010
11+ RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.23/main" > /etc/apk/repositories && \
12+ echo "https://dl-cdn.alpinelinux.org/alpine/v3.23/community" >> /etc/apk/repositories
13+
1114COPY docker/requirements.txt ${ROBOT_HOME}/requirements.txt
1215COPY docker/zookeeper_pods_checker.py ${ROBOT_HOME}/zookeeper_pods_checker.py
1316COPY robot ${ROBOT_HOME}
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ FROM telegraf:1.37-alpine
22
33ENV ZOOKEEPER_MONITORING_HOME=/opt/zookeeper-monitoring
44
5+ RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.23/main" > /etc/apk/repositories && \
6+ echo "https://dl-cdn.alpinelinux.org/alpine/v3.23/community" >> /etc/apk/repositories
7+
58RUN mkdir -p ${ZOOKEEPER_MONITORING_HOME}
69
710COPY docker/config/requirements.txt ${ZOOKEEPER_MONITORING_HOME}/requirements.txt
@@ -27,6 +30,12 @@ RUN python3 -m ensurepip \
2730# Upgrade all tools to avoid vulnerabilities
2831RUN set -x && apk upgrade --available
2932
33+ # Upgrade tools from edge to avoid vulnerabilities
34+ RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" > /etc/apk/repositories \
35+ && echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
36+ && apk add --update --no-cache --upgrade \
37+ pcre2 curl gnutls libcurl jq
38+
3039USER 1000:0
3140WORKDIR ${ZOOKEEPER_MONITORING_HOME}
3241
You can’t perform that action at this time.
0 commit comments