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 0ea9095 commit c38c9e5Copy full SHA for c38c9e5
Dockerfile
@@ -7,8 +7,11 @@ RUN apt-get install -y libglib2.0-0
7
RUN apt-get install -y python3 python3-pip
8
RUN apt-get install -y git
9
10
-# clone databook files
11
-RUN git clone https://github.com/AllenInstitute/openscope_databook.git
+# copy databook files
+COPY requirements.txt ./openscope_databook/requirements.txt
12
+COPY setup.py ./openscope_databook/setup.py
13
+COPY README.md ./openscope_databook/README.md
14
+COPY LICENSE.txt ./openscope_databook/LICENSE.txt
15
16
# for reasons I don't understand, these must be installed before the rest the requirements
17
RUN pip install numpy cython
0 commit comments