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 && \