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 06ac65a commit 22ce5ccCopy full SHA for 22ce5cc
2 files changed
Dockerfile
@@ -0,0 +1,16 @@
1
+FROM python:3
2
+
3
+RUN apt-get update && apt-get install git
4
+RUN mkdir dsbuild
5
+COPY .git ./dsbuild/.git
6
+COPY .gitattributes ./dsbuild
7
+COPY dotscience ./dsbuild/dotscience
8
+COPY setup.py ./dsbuild
9
+COPY README.md ./dsbuild
10
+COPY LICENSE ./dsbuild
11
+COPY setup.cfg ./dsbuild
12
+COPY MANIFEST.in ./dsbuild
13
+COPY versioneer.py ./dsbuild
14
15
+RUN cd dsbuild ; python3 setup.py install
16
+#RUN rm -rf dsbuild
Dockerfile.python
0 commit comments