Compare commits

...

5 Commits

2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
# Use a specific version of OpenJDK based on Debian ("bullseye" in this case) # Use a specific version of OpenJDK based on Debian ("bullseye" in this case)
FROM --platform=$BUILDPLATFORM openjdk:22-ea-21-jdk-slim-bullseye AS builder FROM --platform=$BUILDPLATFORM openjdk:21-jdk-bullseye AS builder
# Replace 'apk' commands with 'apt-get' for Debian-based package management. # Replace 'apk' commands with 'apt-get' for Debian-based package management.
# Install required packages such as 'git' and 'gradle'. Remember to update and clean up properly. # Install required packages such as 'git' and 'gradle'. Remember to update and clean up properly.
@@ -12,7 +12,7 @@ COPY . .
RUN ./gradlew shadowJar RUN ./gradlew shadowJar
# Second stage: Setup the runtime container # Second stage: Setup the runtime container
FROM openjdk:22-ea-21-jdk-slim-bullseye FROM openjdk:21-jdk-bullseye
# Again, switch to 'apt-get' for installing 'bash'. Clean up to keep the image size down. # Again, switch to 'apt-get' for installing 'bash'. Clean up to keep the image size down.
RUN apt-get update && \ RUN apt-get update && \

View File

@@ -93,7 +93,7 @@ dependencies {
api 'org.slf4j:slf4j-simple:2.0.12' api 'org.slf4j:slf4j-simple:2.0.12'
// Easy file management // Easy file management
api 'commons-io:commons-io:2.16.0' api 'commons-io:commons-io:2.16.1'
// Config management // Config management
api 'org.yaml:snakeyaml:1.33' api 'org.yaml:snakeyaml:1.33'
@@ -141,7 +141,7 @@ dependencies {
api 'org.mariadb.jdbc:mariadb-java-client:3.3.3' api 'org.mariadb.jdbc:mariadb-java-client:3.3.3'
// UNIX sockets // UNIX sockets
api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.0' api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.1'
// Twilio SDK for SMS // Twilio SDK for SMS
api 'com.twilio.sdk:twilio:10.1.3' api 'com.twilio.sdk:twilio:10.1.3'