diff --git a/docker/everest-playground-ubuntu-20-04/.devcontainer.json b/docker/everest-playground-ubuntu-22-04/.devcontainer.json similarity index 94% rename from docker/everest-playground-ubuntu-20-04/.devcontainer.json rename to docker/everest-playground-ubuntu-22-04/.devcontainer.json index 93025435..0c302b51 100644 --- a/docker/everest-playground-ubuntu-20-04/.devcontainer.json +++ b/docker/everest-playground-ubuntu-22-04/.devcontainer.json @@ -1,5 +1,5 @@ { - "name": "EVerest playground Ubuntu 20.04", + "name": "EVerest playground Ubuntu 22.04", "build": { "dockerfile": "Dockerfile" }, diff --git a/docker/everest-playground-ubuntu-20-04/Dockerfile b/docker/everest-playground-ubuntu-22-04/Dockerfile similarity index 97% rename from docker/everest-playground-ubuntu-20-04/Dockerfile rename to docker/everest-playground-ubuntu-22-04/Dockerfile index 62d2e519..54a435e9 100644 --- a/docker/everest-playground-ubuntu-20-04/Dockerfile +++ b/docker/everest-playground-ubuntu-22-04/Dockerfile @@ -1,5 +1,5 @@ ARG BASE_IMAGE=ubuntu -ARG BASE_IMAGE_VERSION=20.04 +ARG BASE_IMAGE_VERSION=22.04 FROM ${BASE_IMAGE}:${BASE_IMAGE_VERSION} ARG USERNAME=docker @@ -33,7 +33,7 @@ RUN apt-get update \ cppcheck \ libboost-all-dev \ maven \ - openjdk-11-jdk \ + openjdk-17-jdk \ libsqlite3-dev \ python3-pip \ libssl-dev \ diff --git a/docker/everest-playground/Dockerfile b/docker/everest-playground/Dockerfile index 92ba2e79..6b6c37be 100644 --- a/docker/everest-playground/Dockerfile +++ b/docker/everest-playground/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=debian:11 +ARG BASE_IMAGE=debian:12 FROM ${BASE_IMAGE} ARG BASE_IMAGE @@ -35,7 +35,7 @@ RUN apt-get update \ cppcheck \ libboost-all-dev \ maven \ - openjdk-11-jdk \ + openjdk-17-jdk \ nodejs \ npm \ libsqlite3-dev \