File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM ubuntu:22 .04 as zephyr
1
+ FROM ubuntu:24 .04 AS zephyr
2
2
3
3
ARG ZEPHYR_VERSION=2.4.0
4
4
# Prevent prompts configuring tzdata
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
10
10
python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \
11
11
make gcc gcc-multilib g++-multilib libsdl2-dev
12
12
13
- RUN pip3 install -U west
13
+ RUN pip3 install --break-system-packages - U west
14
14
15
15
ENV WEST_BASE=/zephyrproject
16
16
ENV ZEPHYR_BASE=${WEST_BASE}/zephyr
@@ -24,7 +24,7 @@ RUN if [ "${ZEPHYR_VERSION}" = "2.3.0" ]; then \
24
24
RUN west init -l ${ZEPHYR_BASE}
25
25
RUN west update --narrow --fetch-opt=--filter=tree:0
26
26
27
- RUN pip3 install -r ${ZEPHYR_BASE}/scripts/requirements.txt
27
+ RUN pip3 install --break-system-packages - r ${ZEPHYR_BASE}/scripts/requirements.txt
28
28
29
29
ADD setup-sdk.sh /setup-sdk.sh
30
30
RUN /setup-sdk.sh
You can’t perform that action at this time.
0 commit comments