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

Bugfix/deprecate ubuntu 20 #148

Merged
merged 4 commits into from
Jun 4, 2024
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "EVerest playground Ubuntu 20.04",
"name": "EVerest playground Ubuntu 22.04",
"build": {
"dockerfile": "Dockerfile"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions docker/everest-playground/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=debian:11
ARG BASE_IMAGE=debian:12
FROM ${BASE_IMAGE}

ARG BASE_IMAGE
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN apt-get update \
cppcheck \
libboost-all-dev \
maven \
openjdk-11-jdk \
openjdk-17-jdk \
nodejs \
npm \
libsqlite3-dev \
Expand Down
Loading