Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade debian 12 #187

Merged
merged 2 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ UPGRADE: HSQLDB from 2.2.9 to 2.7.1
UPGRADE: Java from 8 to 11 in Dockerfile
UPGRADE: lxml from 4.6.5 to 4.9.1.
UPGRADE: java mysql connector from 8.0.27 to 8.0.28
UPGRADE: Debian version from 11.2 to 11.3 in Dockerfile
UPGRADE: Debian version from 11.2 to 12.1 in Dockerfile

1.10.0

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG IMAGE_TAG=11.3-slim
ARG IMAGE_TAG=12.1-slim
FROM debian:${IMAGE_TAG}

MAINTAINER IoT team
Expand All @@ -8,7 +8,7 @@ ARG CLEAN_DEV_TOOLS
# DB_ENDPOINT host[:port]
ENV DB_ENDPOINT localhost
ENV KEYPASS_VERSION 1.10.0
ENV JAVA_VERSION "1.11.0"
ENV JAVA_VERSION "1.17.0"
ENV JAVA_HOME /usr/lib/jvm/java-${JAVA_VERSION}-openjdk-amd64
ENV CLEAN_DEV_TOOLS ${CLEAN_DEV_TOOLS:-1}

Expand All @@ -19,7 +19,7 @@ RUN \
apt-get -y update && \
apt-get -y upgrade && \
# Install dependencies
apt-get -y install openjdk-11-jdk && \
apt-get -y install openjdk-17-jdk && \
apt-get -y install \
curl \
netcat-traditional \
Expand Down
Loading