Skip to content

Commit

Permalink
Switching Ubuntu base image versions for the Picard Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
tefirman committed Feb 25, 2024
1 parent 5df57d2 commit 15fb5c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion picard/Dockerfile_3.1.1
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 && \
Expand Down
5 changes: 4 additions & 1 deletion picard/Dockerfile_latest
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 && \
Expand Down

0 comments on commit 15fb5c2

Please sign in to comment.