From 15fb5c22d785230b0be578bc0a6180164ff761a0 Mon Sep 17 00:00:00 2001 From: Taylor Firman Date: Sun, 25 Feb 2024 07:21:37 -0800 Subject: [PATCH] Switching Ubuntu base image versions for the Picard Dockerfiles --- picard/Dockerfile_3.1.1 | 5 ++++- picard/Dockerfile_latest | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/picard/Dockerfile_3.1.1 b/picard/Dockerfile_3.1.1 index 18e3c13..cc53513 100644 --- a/picard/Dockerfile_3.1.1 +++ b/picard/Dockerfile_3.1.1 @@ -1,6 +1,6 @@ # Using the Ubuntu base image -FROM ubuntu:noble-20240114 +FROM ubuntu:jammy-20240212 # Adding labels for the GitHub Container Registry LABEL org.opencontainers.image.title="picard" @@ -12,6 +12,9 @@ LABEL org.opencontainers.image.documentation=https://getwilds.org/ LABEL org.opencontainers.image.source=https://github.com/getwilds/wilds-docker-library LABEL org.opencontainers.image.licenses=MIT +# Setting environment variables +ENV DEBIAN_FRONTEND noninteractive + # Installing Java RUN apt-get update && \ apt-get install -y openjdk-17-jdk && \ diff --git a/picard/Dockerfile_latest b/picard/Dockerfile_latest index b9f65e5..843e5f3 100644 --- a/picard/Dockerfile_latest +++ b/picard/Dockerfile_latest @@ -1,6 +1,6 @@ # Using the Ubuntu base image -FROM ubuntu:noble-20240114 +FROM ubuntu:jammy-20240212 # Adding labels for the GitHub Container Registry LABEL org.opencontainers.image.title="picard" @@ -12,6 +12,9 @@ LABEL org.opencontainers.image.documentation=https://getwilds.org/ LABEL org.opencontainers.image.source=https://github.com/getwilds/wilds-docker-library LABEL org.opencontainers.image.licenses=MIT +# Setting environment variables +ENV DEBIAN_FRONTEND noninteractive + # Installing Java RUN apt-get update && \ apt-get install -y openjdk-17-jdk && \