facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
39 lines
722 B
Docker
39 lines
722 B
Docker
FROM alpine:3.19
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
build-base \
|
|
bzip2-dev \
|
|
dbus \
|
|
desktop-file-utils \
|
|
docbook-xml \
|
|
docbook-xsl \
|
|
gettext-dev \
|
|
git \
|
|
libffi-dev \
|
|
libxml2-utils \
|
|
libxslt \
|
|
meson \
|
|
musl-locales \
|
|
py3-pip \
|
|
python3 \
|
|
pcre2-dev \
|
|
shared-mime-info \
|
|
tzdata \
|
|
util-linux-dev \
|
|
zlib-dev
|
|
|
|
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8 MUSL_LOCPATH=/usr/share/i18n/locales/musl
|
|
|
|
RUN pip3 install --break-system-packages meson==1.4.2
|
|
|
|
ARG HOST_USER_ID=5555
|
|
ENV HOST_USER_ID ${HOST_USER_ID}
|
|
RUN adduser -D -u $HOST_USER_ID -s /bin/bash user
|
|
|
|
USER user
|
|
WORKDIR /home/user
|
|
|
|
COPY cache-subprojects.sh .
|
|
RUN ./cache-subprojects.sh
|