We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 281225b commit 14b02eeCopy full SHA for 14b02ee
docker/Dockerfile
@@ -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
16
17
+# Remove unnecessary packages
18
+RUN apk del git
0 commit comments