-
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This also updates the base image to Ubuntu 24.04 LTS. The build has been updated to use the suffix jdk17 for these images: killbill/base:jdk17 killbill/killbill:jdk17 killbill/kaui:jdk17 killbill/killbill:0.24.10-jdk17 killbill/kaui:3.0.9-jdk17 Signed-off-by: Pierre-Alexandre Meyer <[email protected]>
- Loading branch information
Showing
4 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM ubuntu:20.04 as builder-base | ||
FROM ubuntu:24.04 AS builder-base | ||
LABEL maintainer="[email protected]" | ||
|
||
USER root | ||
|
||
ENV LC_CTYPE=en_US.UTF-8 | ||
ENV LC_ALL=C | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LANG=en_US.UTF-8 | ||
ENV PYTHONIOENCODING=utf8 | ||
|
||
|
@@ -24,7 +24,7 @@ RUN apt-get update && \ | |
libapr1 \ | ||
mysql-client \ | ||
net-tools \ | ||
openjdk-11-jdk-headless \ | ||
openjdk-17-jdk-headless \ | ||
python3-lxml \ | ||
sudo \ | ||
telnet \ | ||
|
@@ -34,7 +34,7 @@ RUN apt-get update && \ | |
rm -rf /var/lib/apt/lists/* | ||
|
||
# Configure default JAVA_HOME path | ||
RUN ln -s java-11-openjdk-$(dpkg --print-architecture) /usr/lib/jvm/default-java | ||
RUN ln -s java-17-openjdk-$(dpkg --print-architecture) /usr/lib/jvm/default-java | ||
ENV JAVA_HOME=/usr/lib/jvm/default-java | ||
ENV JSSE_HOME=$JAVA_HOME/jre/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters