Skip to content

Commit 090d49a

Browse files
committed
chore(quickwit): add jq command
1 parent cf74b12 commit 090d49a

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ FROM registry.drycc.cc/drycc/base:${CODENAME}
44
ENV DRYCC_UID=1001 \
55
DRYCC_GID=1001 \
66
DRYCC_HOME_DIR=/data \
7+
JQ_VERSION="1.7.1" \
78
MC_VERSION="2025.04.03.17.07.56" \
89
QUICKWIT_VERSION="0.8.2"
910

1011
ADD rootfs /
1112

1213
RUN groupadd drycc --gid ${DRYCC_GID} \
1314
&& useradd drycc -u ${DRYCC_UID} -g ${DRYCC_GID} -s /bin/bash -m -d ${DRYCC_HOME_DIR} \
15+
&& install-stack jq $JQ_VERSION \
1416
&& install-stack mc $MC_VERSION \
1517
&& install-stack quickwit $QUICKWIT_VERSION \
1618
&& rm -rf \

rootfs/usr/local/bin/init-quickwit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -e
44
shopt -s expand_aliases
55

66
alias mc="init-stack mc"
7+
alias jq="init-stack jq"
78
alias quickwit="init-stack quickwit"
89

910
mc config host add storage \

0 commit comments

Comments
 (0)