Skip to content

Commit

Permalink
Swap Java SDK container to use eclipse-temurin as the base instead of…
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecwik authored Feb 16, 2023
1 parent 4e6d751 commit 684917f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@

## Highlights

* Java SDK containers migrated to [Eclipse Temurin](https://hub.docker.com/_/eclipse-temurin)
as a base. This change migrates away from the deprecated [OpenJDK](https://hub.docker.com/_/openjdk)
container. Eclipse Temurin is currently based upon Ubuntu 22.04 while the OpenJDK
container was based upon Debian 11.
* RunInference PTransform will accept model paths as SideInputs in Python SDK. ([#24042](https://github.com/apache/beam/issues/24042))
* RunInference supports ONNX runtime in Python SDK ([#22972](https://github.com/apache/beam/issues/22972))

Expand Down
2 changes: 1 addition & 1 deletion sdks/java/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.
###############################################################################
ARG java_version
FROM openjdk:${java_version}-bullseye
FROM eclipse-temurin:${java_version}
MAINTAINER "Apache Beam <[email protected]>"

ARG pull_licenses
Expand Down

0 comments on commit 684917f

Please sign in to comment.