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 1579687 commit 45716f2Copy full SHA for 45716f2
Dockerfile
@@ -10,6 +10,9 @@ COPY . .
10
# Install any needed packages specified in requirements.txt
11
RUN pip install --no-cache-dir -r requirements.txt
12
13
+# Install the package in development mode before running tests
14
+RUN pip install -e .
15
+
16
# Install pytest for running tests
17
RUN pip install pytest
18
requirements.txt
@@ -1 +1,3 @@
1
numpy
2
+flask
3
+flask-cors
0 commit comments