Skip to content

Commit 0060885

Browse files
committed
change path to push to dockerhub
1 parent 0b4f78a commit 0060885

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

severus/1.6.1/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM continuumio/miniconda3
2+
3+
COPY ./environment.yml /
4+
5+
# this is a comment
6+
7+
RUN conda env create -f /environment.yml && conda clean -a
8+
9+
ENV PATH=/opt/conda/envs/severus/bin/:${PATH}
10+
11+
RUN apt-get -y update && apt-get -y install file gawk && ln -sf /usr/bin/gawk /usr/bin/awk
12+
13+
RUN echo "source activate severus" > ~/.bashrc
14+
15+
RUN mkdir -p /app/

severus/1.6.1/environment.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: locityper
2+
channels:
3+
- conda-forge
4+
- bioconda
5+
- defaults
6+
dependencies:
7+
- severus
8+
prefix: /opt/conda/envs/severus

0 commit comments

Comments
 (0)