Skip to content

Commit 9667fe0

Browse files
committed
fix file copy path and upgrade mlflow
1 parent e876992 commit 9667fe0

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

docker/celery/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ uvicorn~=0.29.0
66
python-multipart~=0.0.5
77
ijson~=3.1.4
88
python-dotenv~=0.20.0
9-
mlflow~=2.14.3
9+
mlflow~=2.16.2
1010
psycopg2-binary~=2.9.4
1111
boto3~=1.28.84
1212
typer~=0.7.0

docker/medcat-deid/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN mkdir -p /app/model/model && \
3030
mkdir -p /app/model/retrained && \
3131
chown -R $CMS_UID:$CMS_GID /app
3232
RUN pip install --no-cache-dir -U pip &&\
33-
pip install --no-cache-dir -r requirements.txt && \
33+
pip install --no-cache-dir -r /app/requirements.txt && \
3434
python -m spacy download en_core_web_md
3535

3636
WORKDIR /app

docker/medcat-deid/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ uvicorn~=0.29.0
66
python-multipart~=0.0.5
77
ijson~=3.1.4
88
python-dotenv~=0.20.0
9-
mlflow~=2.14.3
9+
mlflow~=2.16.2
1010
psycopg2-binary~=2.9.4
1111
boto3~=1.28.84
1212
typer~=0.7.0

docker/medcat-icd10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN mkdir -p /app/model/model && \
3030
mkdir -p /app/model/retrained && \
3131
chown -R $CMS_UID:$CMS_GID /app
3232
RUN pip install --no-cache-dir -U pip &&\
33-
pip install --no-cache-dir -r requirements.txt && \
33+
pip install --no-cache-dir -r /app/requirements.txt && \
3434
python -m spacy download en_core_web_md
3535

3636
WORKDIR /app

docker/medcat-icd10/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ uvicorn~=0.29.0
55
python-multipart~=0.0.5
66
ijson~=3.1.4
77
python-dotenv~=0.20.0
8-
mlflow~=2.14.3
8+
mlflow~=2.16.2
99
psycopg2-binary~=2.9.4
1010
boto3~=1.28.84
1111
typer~=0.7.0

docker/medcat-snomed/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN mkdir -p /app/model/model && \
3131
mkdir -p /app/model/retrained && \
3232
chown -R $CMS_UID:$CMS_GID /app
3333
RUN pip install --no-cache-dir -U pip &&\
34-
pip install --no-cache-dir -r requirements.txt && \
34+
pip install --no-cache-dir -r /app/requirements.txt && \
3535
python -m spacy download en_core_web_md
3636

3737
WORKDIR /app

docker/medcat-snomed/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ uvicorn~=0.29.0
55
python-multipart~=0.0.5
66
ijson~=3.1.4
77
python-dotenv~=0.20.0
8-
mlflow~=2.14.3
8+
mlflow~=2.16.2
99
psycopg2-binary~=2.9.4
1010
boto3~=1.28.84
1111
typer~=0.7.0

docker/medcat-umls/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN mkdir -p /app/model/model && \
3030
mkdir -p /app/model/retrained && \
3131
chown -R $CMS_UID:$CMS_GID /app
3232
RUN pip install --no-cache-dir -U pip &&\
33-
pip install --no-cache-dir -r requirements.txt && \
33+
pip install --no-cache-dir -r /app/requirements.txt && \
3434
python -m spacy download en_core_web_md
3535

3636
WORKDIR /app

docker/medcat-umls/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ uvicorn~=0.29.0
55
python-multipart~=0.0.5
66
ijson~=3.1.4
77
python-dotenv~=0.20.0
8-
mlflow~=2.14.3
8+
mlflow~=2.16.2
99
psycopg2-binary~=2.9.4
1010
boto3~=1.28.84
1111
typer~=0.7.0

docker/mlflow/models/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlflow~=2.14.3
1+
mlflow~=2.16.2
22
psycopg2-binary~=2.9.4
33
boto3~=1.28.84
44
setuptools

0 commit comments

Comments
 (0)