This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika-docker.git


The following commit(s) were added to refs/heads/main by this push:
     new b15bf17  update versions for 3.0.0.0 release
b15bf17 is described below

commit b15bf1733e762b562ae850b07f7c454beda21085
Author: tallison <[email protected]>
AuthorDate: Mon Oct 21 09:40:49 2024 -0400

    update versions for 3.0.0.0 release
---
 .env               | 2 +-
 CHANGES.md         | 4 ++++
 README.md          | 6 ++++--
 full/Dockerfile    | 8 ++++----
 minimal/Dockerfile | 8 ++++----
 5 files changed, 17 insertions(+), 11 deletions(-)

diff --git a/.env b/.env
index b66aa47..d56ae80 100644
--- a/.env
+++ b/.env
@@ -13,4 +13,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-TAG=2.9.2.1
\ No newline at end of file
+TAG=3.0.0.0
\ No newline at end of file
diff --git a/CHANGES.md b/CHANGES.md
index 2f73371..659e910 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -4,6 +4,10 @@ As of 2.5.0.1, we started adding a digit for Docker versions.  
Going forward, we
 a four digit version, where the first three are the Tika version and the last 
one is the docker version.
 As of 2.5.0.2, we started tagging release commits in our github repo.
 
+* 3.0.0.0 (21 Oct 2024)
+  * First 3.x stable release
+  * Bump jre to 21
+
 * 2.9.2.1 (21 May 2024)
   * Updated to noble
   * First multi-arch release
diff --git a/README.md b/README.md
index ec8f907..cf7fc9b 100644
--- a/README.md
+++ b/README.md
@@ -16,8 +16,10 @@ To install more languages simply update the apt-get command 
to include the packa
 ## Available Tags
 
 Below are the most recent 2.x series tags:
-- `latest`, `2.9.2.1`: Apache Tika Server 2.9.2.1 (Minimal)
-- `latest-full`, `2.9.2.1-full`: Apache Tika Server 2.9.2.1 (Full)
+- `latest`, `3.0.0.0`: Apache Tika Server 3.0.0.0 (Minimal)
+- `latest-full`, `3.0.0.0-full`: Apache Tika Server 3.0.0.0 (Full)
+- `3.0.0.0`, `3.0.0.0-BETA2`: Apache Tika Server 3.0.0.0 (Minimal)
+- `3.0.0.0`, `3.0.0.0-BETA2-full`: Apache Tika Server 3.0.0.0 (Full)
 - `3.0.0.0-BETA2`, `3.0.0.0-BETA2`: Apache Tika Server 3.0.0.0-BETA2 (Minimal)
 - `3.0.0.0-BETA2`, `3.0.0.0-BETA2-full`: Apache Tika Server 3.0.0.0-BETA2 
(Full)
 - `2.9.2.1`, `2.9.2.1`: Apache Tika Server 2.9.2.1 (Minimal)
diff --git a/full/Dockerfile b/full/Dockerfile
index 23f486e..e69a803 100644
--- a/full/Dockerfile
+++ b/full/Dockerfile
@@ -15,9 +15,9 @@
 # the subsequent stages -- see TIKA-3912
 ARG UID_GID="35002:35002"
 
-FROM ubuntu:noble as base
+FROM ubuntu:noble AS base
 
-FROM base as fetch_tika
+FROM base AS fetch_tika
 
 ARG TIKA_VERSION
 ARG CHECK_SIG=true
@@ -42,9 +42,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get 
-y install gnupg2 w
 
 #RUN if [ "$CHECK_SIG" = "true" ] ; then gpg --verify 
/tika-server-standard-${TIKA_VERSION}.jar.asc 
/tika-server-standard-${TIKA_VERSION}.jar; fi
 
-FROM base as runtime
+FROM base AS runtime
 ARG UID_GID
-ARG JRE='openjdk-17-jre-headless'
+ARG JRE='openjdk-21-jre-headless'
 RUN set -eux \
     && apt-get update \
     && apt-get install --yes --no-install-recommends gnupg2 
software-properties-common \
diff --git a/minimal/Dockerfile b/minimal/Dockerfile
index 2c4abe6..8c6fb17 100644
--- a/minimal/Dockerfile
+++ b/minimal/Dockerfile
@@ -16,9 +16,9 @@
 # the subsequent stages -- see TIKA-3912
 ARG UID_GID="35002:35002"
 
-FROM ubuntu:noble as base
+FROM ubuntu:noble AS base
 
-FROM base as fetch_tika
+FROM base AS fetch_tika
 
 ARG TIKA_VERSION
 ARG CHECK_SIG=true
@@ -50,10 +50,10 @@ RUN set -eux \
 # when trying to build 2.9.2.0
 #RUN if [ "$CHECK_SIG" = "true" ] ; then gpg --verify 
/tika-server-standard-${TIKA_VERSION}.jar.asc 
/tika-server-standard-${TIKA_VERSION}.jar; fi
 
-FROM base as runtime
+FROM base AS runtime
 # must reference uid_gid
 ARG UID_GID
-ARG JRE='openjdk-17-jre-headless'
+ARG JRE='openjdk-21-jre-headless'
 RUN set -eux \
     && apt-get update \
     && apt-get install --yes --no-install-recommends \

Reply via email to