Skip to content

Update ubuntu Docker tag to v24 #77

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

Open
wants to merge 1 commit into
base: konflux-poc
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions client/python/ovmsclient/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# limitations under the License.
#

ARG BASE_IMAGE=ubuntu:22.04
ARG FINAL_IMAGE=ubuntu:22.04
ARG BASE_IMAGE=ubuntu:24.04
ARG FINAL_IMAGE=ubuntu:24.04

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
FROM $BASE_IMAGE as base_build
Expand Down
2 changes: 1 addition & 1 deletion demos/bert_question_answering/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#


FROM ubuntu:22.04
FROM ubuntu:24.04
RUN apt update && apt install -y python3-pip && apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /bert
COPY bert_question_answering.py tokens_bert.py html_reader.py requirements.txt ./
Expand Down
4 changes: 2 additions & 2 deletions demos/common/stream_client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM ubuntu:22.04 as BASE
FROM ubuntu:24.04 as BASE
ARG DEBIAN_FRONTEND=noninteractive
ARG JOBS
RUN apt-get update -qq && apt-get --no-install-recommends -y install \
Expand Down Expand Up @@ -100,7 +100,7 @@ RUN git clone https://github.com/opencv/opencv.git /opencv --branch 4.8.1 && \

RUN mkdir /cvlib && find /lib/x86_64-linux-gnu/ -name 'libopencv*' -print | xargs -I % cp % /cvlib
RUN mkdir /fflib && ldd /bin/ffmpeg | awk '{print $3}' | sed '/^\s*$/d' | xargs -I % cp % /fflib
FROM ubuntu:22.04
FROM ubuntu:24.04
ARG DEBIAN_FRONTEND=noninteractive
COPY --from=BASE /lib/python3/dist-packages/cv2 /lib/python3/dist-packages/cv2
COPY --from=BASE /bin/ffmpeg /bin/ffmpeg
Expand Down
2 changes: 1 addition & 1 deletion src/example/SampleCpuExtension/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

ARG BASE_IMAGE=ubuntu:22.04
ARG BASE_IMAGE=ubuntu:24.04
FROM $BASE_IMAGE

ARG TEMP_DIR=/tmp/openvino_installer
Expand Down