Skip to content

Commit 75ef1fa

Browse files
authoredSep 26, 2024
C-API demo package update (#2702)
Package v2024.3->v2024.4
1 parent 44f9b94 commit 75ef1fa

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎demos/c_api_minimal_app/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ HTTPS_PROXY := "$(https_proxy)"
2020
NO_PROXY := "$(no_proxy)"
2121

2222
OVMS_CPP_DOCKER_IMAGE ?= openvino/model_server
23-
OVMS_CPP_IMAGE_TAG ?= 2024.3
23+
OVMS_CPP_IMAGE_TAG ?= 2024.4
2424
BASE_OS ?= ubuntu22
2525

2626
ifeq ($(BASE_OS),ubuntu22)
2727
BASE_OS_TAG_UBUNTU ?= 22.04
28-
PACKAGE_URL ?="https://github.com/openvinotoolkit/model_server/releases/download/v2024.3/ovms_ubuntu22.tar.gz"
28+
PACKAGE_URL ?="https://github.com/openvinotoolkit/model_server/releases/download/v2024.4/ovms_ubuntu22.tar.gz"
2929
BASE_IMAGE ?= ubuntu:$(BASE_OS_TAG_UBUNTU)
3030
DIST_OS=ubuntu
3131
endif
3232
ifeq ($(BASE_OS),redhat)
3333
BASE_OS_TAG_REDHAT ?= 8.10
34-
PACKAGE_URL ="https://github.com/openvinotoolkit/model_server/releases/download/v2024.3/ovms_redhat.tar.gz"
34+
PACKAGE_URL ="https://github.com/openvinotoolkit/model_server/releases/download/v2024.4/ovms_redhat.tar.gz"
3535
BASE_IMAGE ?= registry.access.redhat.com/ubi8/ubi:$(BASE_OS_TAG_REDHAT)
3636
DIST_OS=redhat
3737
endif

‎docs/deploying_server.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ sudo apt -y install libpython3.8
116116
:sync: ubuntu-22-04
117117
Download precompiled package:
118118
```{code} sh
119-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.3/ovms_ubuntu22.tar.gz
119+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.4/ovms_ubuntu22.tar.gz
120120
tar -xzvf ovms_ubuntu22.tar.gz
121121
```
122122
or build it yourself:
@@ -147,7 +147,7 @@ sudo apt -y install libpython3.10
147147
:sync: ubuntu-24-04
148148
Download precompiled package:
149149
```{code} sh
150-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.3/ovms_ubuntu22.tar.gz
150+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.4/ovms_ubuntu22.tar.gz
151151
tar -xzvf ovms_ubuntu22.tar.gz
152152
```
153153
or build it yourself:
@@ -178,7 +178,7 @@ sudo apt -y install libpython3.10
178178
:sync: rhel-8-10
179179
Download precompiled package:
180180
```{code} sh
181-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.3/ovms_redhat.tar.gz
181+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.4/ovms_redhat.tar.gz
182182
tar -xzvf ovms_redhat.tar.gz
183183
```
184184
or build it yourself:
@@ -205,7 +205,7 @@ sudo yum install -y python39-libs
205205
:sync: rhel-9.4
206206
Download precompiled package:
207207
```{code} sh
208-
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.3/ovms_redhat.tar.gz
208+
wget https://github.com/openvinotoolkit/model_server/releases/download/v2024.4/ovms_redhat.tar.gz
209209
tar -xzvf ovms_redhat.tar.gz
210210
```
211211
or build it yourself:

0 commit comments

Comments
 (0)