Skip to content

Commit

Permalink
Merge branch '2023.11' into 2024.11
Browse files Browse the repository at this point in the history
  • Loading branch information
byteplow committed Feb 12, 2025
2 parents 36bdd80 + 7008c38 commit cc9c330
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/dockerimage/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,10 @@ COPY --from=gomplate /bin/gomplate /usr/bin/gomplate
RUN mkdir /usr/local/busybox \
&& busybox --install /usr/local/busybox
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/busybox
RUN wget -O /usr/local/bin/tika.jar https://dlcdn.apache.org/tika/2.9.3/tika-app-2.9.3.jar
# install latest version of tika 2.9.*. (Expects apache to only serve on version of tika 2.9.*)
RUN tika_version=$(curl https://dlcdn.apache.org/tika/ | grep -oh '<a href="2.9.[0123456789]*/">' | cut -d '"' -f 2 | cut -d / -f 1) \
&& curl https://dlcdn.apache.org/tika/${tika_version}/tika-app-${tika_version}.jar --output /usr/local/bin/tika.jar \
&& echo $(curl https://dlcdn.apache.org/tika/${tika_version}/tika-app-${tika_version}.jar.sha512) /usr/local/bin/tika.jar | sha512sum -c
RUN addgroup --system -gid 150 tine20 && \
adduser --system --no-create-home --disabled-password --shell /bin/bash --gecos "tine20 user" --ingroup tine20 --uid 150 tine20 && \
mkdir -p /etc/tine20/conf.d && \
Expand Down

0 comments on commit cc9c330

Please sign in to comment.