01 January 1970 1 10K Report

Hi there I want to install Metaphlan tool for metagenomic analysis in docker for that I have created an image and installed metaphlan in it using dockerfile. Than I run the container on first it properly printed the metaphlan command but its automatically stop sunning and exited. I don't know why kindly help me out how to keep my container running and how to work in that container.

for dockerfile this was the content in it.

# Use the base Python image

FROM python:3.7

# Set the working directory inside the container

WORKDIR /app

# Install MetaPhlAn 3.1.0

RUN pip install metaphlan==3.1.0

# Set the entry point to MetaPhlAn

COPY entrypoint.sh /usr/local/bin/

RUN chmod +x /usr/local/bin/entrypoint.sh

ENTRYPOINT ["metaphlan"]

CMD tail -f /dev/null

Kindly help me out in this. Regards.

More Umar Amjid's questions See All
Similar questions and discussions