Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build image with DPDK, etc.
FROM --platform=${TARGETPLATFORM} debian:12-slim AS builder
FROM --platform=${TARGETPLATFORM} debian:13-slim AS builder

ARG TARGETARCH
ARG DPDK_VER=24.11.1
Expand Down Expand Up @@ -108,7 +108,7 @@ RUN meson setup xtratest_build $DPSERVICE_FEATURES -Denable_tests=true && ninja


# Test-image to run pytest
FROM debian:12-slim AS tester
FROM debian:13-slim AS tester

RUN apt-get update && apt-get install -y --no-install-recommends ON \
libibverbs-dev \
Expand Down Expand Up @@ -149,7 +149,7 @@ ENTRYPOINT ["./runtest.py", "../build", "../xtratest_build"]


# Deployed pod image itself
FROM debian:12-slim AS production
FROM debian:13-slim AS production

RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends ON \
libibverbs-dev \
Expand Down
Loading