⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions phylonet/3.8.4-fix/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
FROM biocontainers/biocontainers:v1.0.0_cv5

LABEL base_image="biocontainers:v1.0.0_cv5"
LABEL version="1"
LABEL software="phylonet"
LABEL software.version="3.8.4-fix"
LABEL about.summary="a tool designed mainly for analyzing, reconstructing, and evaluating phylogenetic networks"
LABEL about.home="https://github.com/NakhlehLab/PhyloNet"
LABEL about.documentation="https://phylogenomics.rice.edu/html/phylonet.html"
LABEL about.license_file="https://phylogenomics.rice.edu/html/phylonetOverview.html"
LABEL about.license="GNU General Public License"
LABEL extra.identifiers.biotools="phylonet"
LABEL about.tags="Phylogenetics"

MAINTAINER Alexander Ramos-Diaz <ra.ramos.diaz@gmail.com>

USER root

ENV PHYLONET_VERSION=3.8.4_fix \
DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
apt install -y default-jdk && \
wget https://github.com/NakhlehLab/PhyloNet/releases/download/$PHYLONET_VERSION/PhyloNet.jar && \
apt-get clean && \
apt-get purge && \
rm -rf /var/lib/apt/lists/* /tmp/*

USER biodocker