Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update auto merged updates #806

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions model_servers/object_detection_python/src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ click==8.1.7
dnspython==2.6.1
email_validator==2.2.0
fastapi==0.111.1
fastapi-cli==0.0.5
fastapi-cli==0.0.6
filelock==3.15.4
fsspec==2024.6.1
h11==0.14.0
httpcore==1.0.6
httptools==0.6.1
httpcore==1.0.7
httptools==0.6.4
httpx==0.27.2
huggingface-hub==0.23.4
idna==3.7
Expand All @@ -22,14 +22,14 @@ mdurl==0.1.2
mpmath==1.3.0
networkx==3.3
numpy==2.0.1
orjson==3.10.7
orjson==3.10.12
packaging==24.1
pillow==10.3.0
pydantic==2.7.4
pydantic_core==2.18.4
Pygments==2.18.0
python-dotenv==1.0.1
python-multipart==0.0.12
python-multipart==0.0.19
PyYAML==6.0.2
regex==2024.5.15
requests==2.32.3
Expand All @@ -39,7 +39,7 @@ shellingham==1.5.4
sniffio==1.3.1
starlette==0.37.2
sympy==1.12.1
timm==1.0.9
timm==1.0.12
tokenizers==0.19.1
torch==2.3.1
torchvision==0.18.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ streamlit==1.33.0
tenacity==8.2.3
toml==0.10.2
toolz==0.12.1
tornado==6.4.1
tornado==6.4.2
typing_extensions==4.11.0
tzdata==2024.1
urllib3==2.2.3
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<dependency>
<groupId>org.mvnpm</groupId>
<artifactId>lit</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -87,7 +87,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.0</version>
<version>3.5.2</version>
<configuration>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
Expand All @@ -110,7 +110,7 @@
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install dependencies only when needed
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-86 AS deps
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-138 AS deps
USER 0
WORKDIR /app

Expand All @@ -13,7 +13,7 @@ RUN \
fi

# Rebuild the source code only when needed
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-86 AS builder
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-138 AS builder
USER 0
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
Expand All @@ -28,7 +28,7 @@ ENV NEXT_TELEMETRY_DISABLED 1
RUN npm run build

# Production image, copy all the files and run next
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-86 AS runner
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-138 AS runner
USER 0
WORKDIR /app

Expand Down
Loading