Skip to content

Commit

Permalink
Updated to work with nextflow pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
eperezme committed Oct 9, 2024
1 parent 90dacf8 commit 40081e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pod5/DOCKERFILE → pod5/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LABEL about.documentation="https://pod5-file-format.readthedocs.io/en/latest/ind
LABEL about.license_file="https://github.com/nanoporetech/pod5-file-format/blob/master/LICENSE.md"
LABEL about.license="Mozilla Public License 2.0"
LABEL about.tags="Genomics"
LABEL extra.identifiers.biotools="POD5"
LABEL extra.identifiers.biotools="pod5"
LABEL extra.binaries="pod5"

################## MAINTAINER ######################
Expand All @@ -25,10 +25,11 @@ LABEL maintainer="Eduard Perez Mendez <[email protected]>"

WORKDIR /app

RUN apt-get update \
RUN apt-get update && apt-get install -y --no-install-recommends bash \
procps \
&& pip install --upgrade pip \
&& pip install lib-pod5==0.3.15 pod5==$software_version \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

################## ENTRYPOINT ######################
ENTRYPOINT ["/bin/bash"]
CMD ["bash"]

0 comments on commit 40081e8

Please sign in to comment.