Compare commits

..

3 Commits

2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
# 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.
# Install required packages such as 'git' and 'gradle'. Remember to update and clean up properly.
@@ -12,7 +12,7 @@ COPY . .
RUN ./gradlew shadowJar
# 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.
RUN apt-get update && \

View File

@@ -141,7 +141,7 @@ dependencies {
api 'org.mariadb.jdbc:mariadb-java-client:3.3.3'
// UNIX sockets
api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.0'
api 'com.kohlschutter.junixsocket:junixsocket-core:2.9.1'
// Twilio SDK for SMS
api 'com.twilio.sdk:twilio:10.1.3'