Skip to content
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
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Scratch build stage
FROM ubuntu:25.04 AS build
FROM ubuntu:25.10 AS build

ARG BUILD_DIR="/tmp"
ARG BINWALK_BUILD_DIR="${BUILD_DIR}/binwalk"
Expand Down Expand Up @@ -50,7 +50,7 @@ RUN apt-get update -y \


## Prod image build stage
FROM ubuntu:25.04
FROM ubuntu:25.10

ARG BUILD_DIR="/tmp"
ARG BINWALK_BUILD_DIR="${BUILD_DIR}/binwalk"
Expand Down Expand Up @@ -85,11 +85,8 @@ RUN apt-get update -y \
zstd \
srecord \
tar \
unzip \
sleuthkit \
cabextract \
curl \
wget \
git \
lz4 \
lzop \
Expand Down
2 changes: 1 addition & 1 deletion dependencies/pip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
if command -v uv >/dev/null 2>&1; then
uv pip install -r "$SCRIPT_DIR/requirements.txt"
else
pip install -r "$SCRIPT_DIR/requirements.txt" --break-system-packages
pip install -r "$SCRIPT_DIR/requirements.txt"
fi
2 changes: 0 additions & 2 deletions dependencies/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
uefi_firmware
jefferson
ubi-reader
lz4
zstandard
git+https://github.com/marin-m/vmlinux-to-elf
Loading