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

fix jdk files (build version) #2336

Merged
merged 1 commit into from
Feb 1, 2024
Merged
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
10 changes: 5 additions & 5 deletions docker/cygnus-ngsi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ RUN \
# Debian 12 comes with Java 17 but we have found some problems with it (see https://github.com/telefonicaid/fiware-cygnus/issues/2297)
# so we "downgrade" to Java 11
apt-get -y install curl git python3 && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jdk_11.0.21+9-1~deb11u1_amd64.deb' > openjdk-11-jdk_11.0.21+9-1~deb11u1_amd64.deb && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jre_11.0.21+9-1~deb11u1_amd64.deb' > openjdk-11-jre_11.0.21+9-1~deb11u1_amd64.deb && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jdk-headless_11.0.21+9-1~deb11u1_amd64.deb' > openjdk-11-jdk-headless_11.0.21+9-1~deb11u1_amd64.deb && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jre-headless_11.0.21+9-1~deb11u1_amd64.deb' > openjdk-11-jre-headless_11.0.21+9-1~deb11u1_amd64.deb && \
apt-get -y install ./openjdk-11-jre-headless_11.0.21+9-1~deb11u1_amd64.deb ./openjdk-11-jre_11.0.21+9-1~deb11u1_amd64.deb ./openjdk-11-jdk-headless_11.0.21+9-1~deb11u1_amd64.deb ./openjdk-11-jdk_11.0.21+9-1~deb11u1_amd64.deb && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jdk_11.0.22+7-1~deb11u1_amd64.deb' > openjdk-11-jdk_11.0.22+7-1~deb11u1_amd64.deb && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jre_11.0.22+7-1~deb11u1_amd64.deb' > openjdk-11-jre_11.0.22+7-1~deb11u1_amd64.deb && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jdk-headless_11.0.22+7-1~deb11u1_amd64.deb' > openjdk-11-jdk-headless_11.0.22+7-1~deb11u1_amd64.deb && \
curl -s --insecure -L 'http://security.debian.org/debian-security/pool/updates/main/o/openjdk-11/openjdk-11-jre-headless_11.0.22+7-1~deb11u1_amd64.deb' > openjdk-11-jre-headless_11.0.22+7-1~deb11u1_amd64.deb && \
apt-get -y install ./openjdk-11-jre-headless_11.0.22+7-1~deb11u1_amd64.deb ./openjdk-11-jre_11.0.22+7-1~deb11u1_amd64.deb ./openjdk-11-jdk-headless_11.0.22+7-1~deb11u1_amd64.deb ./openjdk-11-jdk_11.0.22+7-1~deb11u1_amd64.deb && \
apt-get -y install maven && \
# Add Cygnus user
adduser ${CYGNUS_USER} && \
Expand Down
Loading