[improvement][project]Adapt docker related scripts to new version.

This commit is contained in:
jerryjzhang
2024-12-26 14:22:45 +08:00
parent d04a086c88
commit a4d2df4063
11 changed files with 22 additions and 82 deletions

View File

@@ -1,5 +1,5 @@
# Use an official OpenJDK runtime as a parent image
FROM openjdk:8-jdk
FROM openjdk:21-jdk-bullseye
# Set the working directory in the container
WORKDIR /usr/src/app
@@ -7,8 +7,6 @@ WORKDIR /usr/src/app
# Argument to pass in the supersonic version at build time
ARG SUPERSONIC_VERSION
RUN apt-get update
# Install necessary packages, including Postgres client
RUN apt-get update && apt-get install -y postgresql-client