Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Switch to Ubuntu 24.04 #105

Closed
wants to merge 5 commits into from
Closed
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
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 as base
FROM ubuntu:24.04 as base
WORKDIR /workdir

ARG sdk_nrf_branch=v2.7-branch
Expand All @@ -12,11 +12,10 @@ ENV DEBIAN_FRONTEND=noninteractive
SHELL [ "/bin/bash", "-euxo", "pipefail", "-c" ]

# gcc-multilib make = Host tools for native_sim build
# python 3.8 is installed by toolchain manager hence older version of libffi is required
RUN <<EOT
apt-get -y update
apt-get -y upgrade
apt-get -y install wget unzip clang-format gcc-multilib make libffi7
apt-get -y install wget unzip clang-format gcc-multilib make libunistring-dev
apt-get -y clean
rm -rf /var/lib/apt/lists/*
EOT
Expand Down
Loading