You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN curl -fsSL https://packages.redis.io/gpg | gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
13
+
RUN echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/redis.list
14
+
RUN apt-get update
15
+
RUN apt-get install redis -y
16
+
17
+
# ClickHouse client
18
+
RUN curl -fsSL 'https://packages.clickhouse.com/rpm/lts/repodata/repomd.xml.key' | gpg --dearmor -o /usr/share/keyrings/clickhouse-keyring.gpg
19
+
RUN echo "deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg] https://packages.clickhouse.com/deb stable main" | tee /etc/apt/sources.list.d/clickhouse.list
20
+
RUN apt-get update
21
+
RUN apt-get install clickhouse-client -y
22
+
23
+
# etcd client
24
+
RUN wget https://github.com/etcd-io/etcd/releases/download/v3.5.5/etcd-v3.5.5-linux-amd64.tar.gz && \
25
+
tar xvf etcd-v3.5.5-linux-amd64.tar.gz && \
26
+
cd etcd-v3.5.5-linux-amd64 && \
27
+
mv etcd etcdctl etcdutl /usr/local/bin && \
28
+
rm -rf etcd-v3.5.5-linux-amd64*
29
+
30
+
# AWS CLI
31
+
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
0 commit comments