Skip to content

Commit 14b02ee

Browse files
committed
add flowcraft dockerfile
1 parent 281225b commit 14b02ee

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docker/Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM python:3.6-alpine3.7
2+
MAINTAINER Bruno Gonçalves <bfgoncalves@medicina.ulisboa.pt>
3+
4+
RUN apk add --no-cache git
5+
6+
WORKDIR /flowcraft
7+
8+
# Clone FlowCraft
9+
RUN git clone https://github.com/assemblerflow/flowcraft.git
10+
WORKDIR ./flowcraft
11+
12+
# Install flowcraft
13+
RUN python setup.py install
14+
15+
WORKDIR /flowcraft
16+
17+
# Remove unnecessary packages
18+
RUN apk del git

0 commit comments

Comments
 (0)