Skip to content
Closed
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
2 changes: 1 addition & 1 deletion docker/Dockerfile.dpdk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:24.04
FROM ubuntu:25.10

ENV DEBIAN_FRONTEND=noninteractive

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# ============================================================================
# Stage 1: Build liblpm C library
# ============================================================================
FROM ubuntu:24.04 AS liblpm-builder
FROM ubuntu:25.10 AS liblpm-builder

ENV DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -179,7 +179,7 @@
COPY --from=java-builder /test.sh /app/

# Set library path
ENV LD_LIBRARY_PATH=/usr/local/lib:/app/build:$LD_LIBRARY_PATH

Check warning on line 182 in docker/Dockerfile.java

View workflow job for this annotation

GitHub Actions / Test Java Bindings

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

# Export volume for built artifacts
VOLUME ["/artifacts"]
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.python
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Python bindings container for liblpm
# Builds and tests Python bindings with multiple Python versions

FROM ubuntu:24.04
FROM ubuntu:25.10

LABEL maintainer="Murilo Chianfa <murilo.chianfa@outlook.com>"
LABEL description="liblpm Python bindings"
Expand Down
Loading