StaPH-B / docker-builds

:package: :whale: Dockerfiles and documentation on tools for public health bioinformatics
GNU General Public License v3.0
182 stars 116 forks source link

adding verkko version 2.1 #1007

Closed erinyoung closed 2 months ago

erinyoung commented 2 months ago

There's a new version of verkko!

The release notes indicate that there are some performance enhancements and bug fixes.

For this Dockerfile, I updated the base image to micromamba version 1.5.8, updated the version ARG, removed MAMBA_DOCKERFILE_ACTIVATE=1 since everything was added to PATH, and added --help to the test layer.

The full diff:

$ diff verkko/2.0/Dockerfile verkko/2.1/Dockerfile 
1c1
< FROM mambaorg/micromamba:1.5.6 as app
---
> FROM mambaorg/micromamba:1.5.8 as app
3c3
< ARG VERKKO_VER="2.0"
---
> ARG VERKKO_VER="2.1"
9c9
< LABEL base.image="mambaorg/micromamba:1.5.6"
---
> LABEL base.image="mambaorg/micromamba:1.5.8"
37,38c37
< ENV ENV_NAME="base"
< ARG MAMBA_DOCKERFILE_ACTIVATE=1
---
> RUN verkko --help

Pull Request (PR) checklist:

Kincekara commented 2 months ago

Thank you for the update! I also removed the curl I forgot to delete from the app stage in 2.0. I am merging and deploying this.

Kincekara commented 2 months ago

Deploy link: https://github.com/StaPH-B/docker-builds/actions/runs/9681674813