Skip to content

Commit

Permalink
add dockerfile for csvtoolkit
Browse files Browse the repository at this point in the history
  • Loading branch information
imendes93 committed Dec 23, 2021
1 parent 1f07e6f commit 1b82eec
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions containers/csvkit/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM nfcore/base:1.9
LABEL authors="ines@lifebit.ai" \
description="Docker image containing csvkit toolkit, including in2csv"

COPY environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/csvkit/bin:$PATH
9 changes: 9 additions & 0 deletions containers/csvkit/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: csvkit
channels:
- conda-forge
- bioconda
- defaults
- anaconda
dependencies:
- python=3.8
- csvkit=1.0.5

0 comments on commit 1b82eec

Please sign in to comment.