-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ba3a4b
commit b9ebb5b
Showing
1 changed file
with
1 addition
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,7 @@ FROM continuumio/anaconda3:latest | |
MAINTAINER Rahul Pisupati <[email protected]> | ||
LABEL authors="[email protected]" \ | ||
description="Docker image containing all requirements for the nf-core/methylpy pipeline" | ||
RUN apt-get update --fix-missing && apt-get install -y build-essential \ | ||
RUN apt-get install -y --no-install-recommends apt-utils && apt-get -y install zlib1g-dev && apt-get -y install libbz2-dev libcurl4-gnutls-dev libssl-dev | ||
RUN apt-get -y update --fix-missing && apt-get -y install build-essential apt-utils && apt-get -y install zlib1g-dev && apt-get -y install libbz2-dev libcurl4-gnutls-dev libssl-dev | ||
COPY environment.yml / | ||
RUN conda env create -f /environment.yml && conda clean -a | ||
# install dependencies for DMRfind | ||
|