-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (26 loc) · 1 KB
/
Dockerfile
File metadata and controls
39 lines (26 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM 812206152185.dkr.ecr.us-west-2.amazonaws.com/latch-base:02ab-main
# Its easy to build binaries from source that you can later reference as
# subprocesses within your workflow.
# Or use managed library distributions through the container OS's package
# manager.
#Install tools needed for variant analysis
RUN apt-get update -y &&\
apt-get install -y autoconf samtools
RUN apt-get install -y bcftools
RUN apt-get install -y bwa
RUN apt-get install -y emboss
RUN apt-get install -y ncbi-entrez-direct
RUN apt-get install -y sra-toolkit
# You can use local data to construct your workflow image. Here we copy a
# pre-indexed reference to a path that our workflow can reference.
#COPY data /root/reference
#ENV BOWTIE2_INDEXES="reference"
COPY wf /root/wf
# STOP HERE:
# The following lines are needed to ensure your build environement works
# correctly with latch.
ARG tag
ENV FLYTE_INTERNAL_IMAGE $tag
RUN sed -i 's/latch/wf/g' flytekit.config
RUN python3 -m pip install --upgrade latch
WORKDIR /root