└── Dockerfile /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3.6 2 | 3 | RUN apk update && apk add --no-cache \ 4 | bash \ 5 | git 6 | 7 | RUN cd /tmp && git clone https://github.com/systemd/systemd 8 | 9 | RUN echo "unicode=\"YES\"" >> /etc/rc.conf && \ 10 | apk add --no-cache --virtual .build_deps \ 11 | autoconf file g++ gcc libc-dev make pkgconf python3 ninja \ 12 | util-linux pciutils usbutils coreutils binutils findutils grep \ 13 | build-base gcc abuild binutils binutils-doc gcc-doc gperf libcap libcap-dev \ 14 | valgrind-dev \ 15 | && \ 16 | pip3 install meson 17 | 18 | RUN cd /tmp/systemd && \ 19 | meson build && \ 20 | ninja build 21 | 22 | 23 | --------------------------------------------------------------------------------