Skip to content
Draft
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:23.10
FROM ubuntu:24.04

ARG VERSION=6.5.0-17
ARG VERSION=6.8.0-91
ARG URL='http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/'

WORKDIR /home/ubuntu
Expand Down Expand Up @@ -29,7 +29,7 @@ RUN apt-get update && apt-get install -y \
wget && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
curl ${URL} | \
curl ${URL} | \
grep -E "linux-headers-${VERSION}|linux-tools-${VERSION}" | \
grep "arm64" | \
grep -v "64k" | \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM initrd-builder:0.0.1 AS builder

ARG VERSION=6.5.0-17-generic
ARG VERSION=6.8.0-91-generic
ARG URL='http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux/'

WORKDIR /home/ubuntu
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:23.10
FROM ubuntu:24.04

ARG VERSION=6.5.0-17
ARG VERSION=6.8.0-91
ARG URL='http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/'

WORKDIR /home/ubuntu
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM initrd-builder:0.0.1 AS builder

ARG VERSION=6.5.0-17-generic
ARG VERSION=6.8.0-91-generic
ARG URL='http://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux/'

WORKDIR /home/ubuntu
Expand Down
Loading