-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated version to 1.5.1 and fixed maintainer lables
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM ubuntu:focal as app | ||
|
||
# for easy upgrade later. ARG variables only persist during image build time | ||
ARG unicyclerVer="0.5.0" | ||
ARG unicyclerVer="0.5.1" | ||
ARG blastVer="2.12.0" | ||
# the spades.py version is actually VERY important | ||
ARG spadesVer="3.15.4" | ||
|
@@ -10,16 +10,16 @@ ARG raconVer="1.4.3" | |
LABEL base.image="ubuntu:focal" | ||
LABEL dockerfile.version="1" | ||
LABEL software="Unicycler" | ||
LABEL software.version="0.5.0" | ||
LABEL software.version="${unicyclerVer}" | ||
LABEL description="Unicycler is an assembly pipeline for bacterial genomes." | ||
LABEL website="https://github.com/rrwick/Unicycler" | ||
LABEL license="https://github.com/rrwick/Unicycler/blob/main/LICENSE" | ||
LABEL maintainer1="Kelsey Florek" | ||
LABEL maintainer1.email="[email protected]" | ||
LABEL maintainer2="Curtis Kapsak" | ||
LABEL maintainer2.email="[email protected]" | ||
LABEL maintainer3="Erin Young" | ||
LABEL maintainer3.email="[email protected]" | ||
LABEL maintainer="Erin Young" | ||
LABEL maintainer.email="[email protected]" | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
|