Skip to content

Commit

Permalink
Moving labels to app stage from builder
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung authored Oct 4, 2024
1 parent 43978a7 commit 6f0ef56
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions seqfu/1.20.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]"

# Set non-interactive frontend and update PATH
ENV DEBIAN_FRONTEND=noninteractive \
PATH="/root/.nimble/bin:${PATH}"
Expand Down Expand Up @@ -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="[email protected]"


# Copy the necessary files from the builder
COPY --from=builder /usr/local/bin /usr/local/bin

Expand Down

0 comments on commit 6f0ef56

Please sign in to comment.