Commit ·
10e318a
1
Parent(s): fd26066
bug: dash version
Browse files- Dockerfile +4 -1
- requirements.txt +2 -2
Dockerfile
CHANGED
|
@@ -30,7 +30,10 @@ RUN sed -i "s|port=8050|port=7860 |g" ./MetaExtractor/src/data_review_tool/app.p
|
|
| 30 |
&& sed -i 's|debug=True|debug=False|g' ./MetaExtractor/src/data_review_tool/app.py
|
| 31 |
|
| 32 |
# Install the Python dependencies, removed --no-cache-dir
|
| 33 |
-
RUN pip install -r MetaExtractor/docker/data-review-tool/requirements.txt
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
WORKDIR MetaExtractor/
|
| 36 |
|
|
|
|
| 30 |
&& sed -i 's|debug=True|debug=False|g' ./MetaExtractor/src/data_review_tool/app.py
|
| 31 |
|
| 32 |
# Install the Python dependencies, removed --no-cache-dir
|
| 33 |
+
# RUN pip install -r MetaExtractor/docker/data-review-tool/requirements.txt
|
| 34 |
+
# copy requirements.txt in the repo to the docker image
|
| 35 |
+
COPY ./requirements.txt ./requirements.txt
|
| 36 |
+
RUN pip install -r requirements.txt
|
| 37 |
|
| 38 |
WORKDIR MetaExtractor/
|
| 39 |
|
requirements.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
-
dash=
|
| 2 |
-
dash_bootstrap_components=
|
| 3 |
dash_iconify==0.1.2
|
| 4 |
dash_mantine_components==0.12.1
|
| 5 |
numpy==1.24.3
|
|
|
|
| 1 |
+
dash~=2.11
|
| 2 |
+
dash_bootstrap_components~=1.4
|
| 3 |
dash_iconify==0.1.2
|
| 4 |
dash_mantine_components==0.12.1
|
| 5 |
numpy==1.24.3
|