From 6f0ef56cf374d1c297245e4cbf0bdbbc589f817e Mon Sep 17 00:00:00 2001 From: Young Date: Fri, 4 Oct 2024 10:24:21 -0600 Subject: [PATCH] Moving labels to app stage from builder --- seqfu/1.20.3/Dockerfile | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/seqfu/1.20.3/Dockerfile b/seqfu/1.20.3/Dockerfile index 5fd1080a6..c5cc51645 100644 --- a/seqfu/1.20.3/Dockerfile +++ b/seqfu/1.20.3/Dockerfile @@ -5,17 +5,6 @@ ARG SEQFU_VER="1.20.3" FROM ubuntu:focal AS builder ARG SEQFU_VER -# Metadata -LABEL base.image="ubuntu:focal" -LABEL dockerfile.version="1" -LABEL software="SeqFu" -LABEL software.version="${SEQFU_VER}" -LABEL description="A general-purpose program to manipulate and parse information from FASTA/FASTQ files, supporting gzipped input files." -LABEL website="https://github.com/telatin/seqfu2" -LABEL license.url="https://github.com/telatin/seqfu2?tab=GPL-3.0-1-ov-file#readme" -LABEL maintainer="Taylor K. Paisie" -LABEL maintainer.email="ltj8@cdc.gov" - # Set non-interactive frontend and update PATH ENV DEBIAN_FRONTEND=noninteractive \ PATH="/root/.nimble/bin:${PATH}" @@ -53,6 +42,18 @@ RUN ls -l /root/seqfu2-${SEQFU_VER}/bin && \ FROM ubuntu:focal AS app ARG SEQFU_VER +# Metadata +LABEL base.image="ubuntu:focal" +LABEL dockerfile.version="1" +LABEL software="SeqFu" +LABEL software.version="${SEQFU_VER}" +LABEL description="A general-purpose program to manipulate and parse information from FASTA/FASTQ files, supporting gzipped input files." +LABEL website="https://github.com/telatin/seqfu2" +LABEL license.url="https://github.com/telatin/seqfu2?tab=GPL-3.0-1-ov-file#readme" +LABEL maintainer="Taylor K. Paisie" +LABEL maintainer.email="ltj8@cdc.gov" + + # Copy the necessary files from the builder COPY --from=builder /usr/local/bin /usr/local/bin