Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerfile for eukcc 2.1.3 via pip #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

KateSakharova
Copy link
Contributor

That one is quite urgly, but it seems working... It didn't build on my Mac, but @vagkaratzas built it sucessfully on linux


# Install EukCC
RUN pip install --no-deps eukcc
RUN pip install --no-cache-dir --force-reinstall mysqlclient
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mysql?

COPY --from=apt-get-tools / /

# Set conda configurations and install conda packages
RUN conda config --set ssl_verify no \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need ti skip the certificates?

@mberacochea
Copy link
Member

I have simpler solution (BUT I haven't tested other than eukcc --version)

Dockerfile:

FROM mambaorg/micromamba:2.0.5

COPY --chown=$MAMBA_USER:$MAMBA_USER env.yml /tmp/env.yml

RUN micromamba install -y -n base -f /tmp/env.yml \
    && micromamba install -y -n base conda-forge::procps-ng \
    && micromamba env export --name base --explicit > environment.lock \
    && cat environment.lock \
    && micromamba clean -a -y

ENV PATH="$MAMBA_ROOT_PREFIX/bin:$PATH"

env.yml

  - bioconda
  - conda-forge
dependencies:
  - metaeuk=4.a0f584d
  - pplacer
  - epa-ng=0.3.8
  - python=3.8
  - hmmer=3.3
  - minimap2
  - bwa
  - pysam
  - biopython
  - samtools=1.12
  - six
  - pip
  - pip:
      - jsonpickle>=4.0.0
      - numpy>=1.24.4
      - ete3>=3.1.3
      - eukcc==2.1.3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants