Skip to content
Merged
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-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
dockerfile: Dockerfile.template
args:
# Modify to the desired balenaOS version
OS_VERSION: 2.108.27
OS_VERSION: 6.10.9
privileged: true
restart: on-failure
check:
Expand Down
14 changes: 7 additions & 7 deletions module/Dockerfile.template
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
FROM ubuntu:jammy-20220531 as kernel-build
FROM alpine:20251224 as kernel-build

ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC

RUN apt-get update && \
apt-get install -y \
RUN apk add --no-cache \
bison \
build-essential \
build-base \
flex \
libelf-dev \
libssl-dev \
elfutils-dev \
openssl-dev \
bc \
wget
wget \
bash

WORKDIR /usr/src/app

Expand Down