File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: Zlib
2
2
# SPDX-FileCopyrightText: Silicon Laboratories Inc. https://www.silabs.com
3
3
4
- FROM debian:bookworm as builder
4
+ FROM ubuntu:22.04 as builder
5
+
6
+ ENV DEBIAN_FRONTEND noninteractive
7
+ ENV LC_ALL en_US.UTF-8
8
+ ENV LANG ${LC_ALL}
5
9
6
10
ARG UNIFYSDK_GIT_REPOSITORY https://github.com/SiliconLabs/UnifySDK
7
11
ARG UNIFYSDK_GIT_TAG main
8
12
13
+ RUN echo "# log: Configuring locales" \
14
+ && set -x \
15
+ && apt-get update -y \
16
+ && apt-get install -y locales \
17
+ && echo "${LC_ALL} UTF-8" | tee /etc/locale.gen \
18
+ && locale-gen ${LC_ALL} \
19
+ && dpkg-reconfigure locales \
20
+ && TZ=Etc/UTC apt-get -y install tzdata \
21
+ && date -u
22
+
9
23
ENV project z-wave-protocol-controller
10
24
ENV workdir /usr/local/opt/${project}
11
25
ADD . ${workdir}
@@ -32,7 +46,7 @@ RUN echo "# log: Build" \
32
46
&& ./helper.mk distclean \
33
47
&& date -u
34
48
35
- FROM debian:bookworm
49
+ FROM ubuntu:22.04
36
50
ENV project z-wave-protocol-controller
37
51
ENV workdir /usr/local/opt/${project}
38
52
COPY --from=builder ${workdir}/dist/ ${workdir}/dist/
Original file line number Diff line number Diff line change @@ -45,8 +45,9 @@ packages+=graphviz
45
45
export cmake_options+=-DDOXYGEN_HAVE_DOT =YES
46
46
47
47
packages+ =python3-breathe python3-myst-parser \
48
- python3-sphinx-markdown-tables python3-sphinx-rtd-theme \
49
- python3-linkify-it
48
+ python3-sphinx-markdown-tables python3-sphinx-rtd-theme
49
+
50
+ # packages+=python3-linkify-it # Disable for ubuntu-22.04 use "pip install linkify-it-py" instead
50
51
51
52
# TODO: https://bugs.debian.org/1004136#python-sphinxcontrib.plantuml
52
53
# packages+=python3-sphinxcontrib.plantuml
You can’t perform that action at this time.
0 commit comments