-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Dockerfile and github workflow version push
- Loading branch information
Showing
2 changed files
with
9 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,14 @@ | ||
# Dockerfile to create container with bcl2fastq | ||
# Push to nfcore/bcl2fastq:<VER> | ||
|
||
FROM continuumio/miniconda3 | ||
FROM mambaorg/micromamba | ||
LABEL authors="Daniel Schreyer <[email protected]>" \ | ||
description="Docker image containing conda packages for ampliconsuite run" | ||
|
||
RUN micromamba install --yes --name base -c bioconda -c conda-forge -c mosek \ | ||
bioconda::ampliconsuite=1.2.1 \ | ||
mosek::mosek=10.1.21 | ||
RUN micromamba clean --all --yes | ||
|
||
WORKDIR /app | ||
|
||
# Create the environment: | ||
COPY environment.yml . | ||
RUN conda env create -f environment.yml | ||
|
||
# Activate the environment | ||
SHELL ["conda", "activate", "-n", "ampliconsuite"] | ||
|
||
# Test AmpliconSuite-pipeline.py | ||
SHELL ["AmpliconSuite-pipeline.py", "--help"] | ||
RUN echo "micromamba activate base" >> ~/.bashrc | ||
|
||
COPY . . | ||
# Start a bash shell by default | ||
CMD ["/bin/bash"] |