forked from jonoave/rnadeseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
19 lines (14 loc) · 739 Bytes
/
Dockerfile
File metadata and controls
19 lines (14 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM continuumio/miniconda:4.6.14
LABEL authors="Gisela Gabernet, Alexander Peltzer" \
description="Docker image containing all requirements for qbic-pipelines/rnadeseq pipeline"
COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
RUN apt-get update -qq && \
apt-get install -y zip procps ghostscript
# Add conda installation dir to PATH
ENV PATH /opt/conda/envs/qbic-pipelines-rnadeseq-1.3.2/bin:$PATH
# Dump the details of the installed packates to a file for posterity
RUN conda env export --name qbic-pipelines-rnadeseq-1.3.2 > qbic-pipelines-rnadeseq-1.3.2.yml
# Instruct R processes to use these empty files instead of clashing with a local config
RUN touch .Rprofile
RUN touch .Renviron