mirror of
https://github.com/Xe/furry-happiness
synced 2025-04-06 11:07:04 +00:00
Merge 938a075d82
into 7ba319db25
This commit is contained in:
commit
d5f4bd0d6b
36
Dockerfile
36
Dockerfile
@ -1,36 +1,40 @@
|
|||||||
FROM ubuntu:bionic AS build
|
FROM ubuntu:focal AS build
|
||||||
COPY uml.config /uml.config
|
COPY uml.config /uml.config
|
||||||
ENV LINUX_VERSION linux-4.19.57
|
|
||||||
ENV LINUX_DOWNLOAD_URL https://cdn.kernel.org/pub/linux/kernel/v4.x/${LINUX_VERSION}.tar.xz
|
ENV LINUX_VERSION linux-5.10.47
|
||||||
|
ENV LINUX_DOWNLOAD_URL https://cdn.kernel.org/pub/linux/kernel/v5.x/${LINUX_VERSION}.tar.xz
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get -y install build-essential flex bison xz-utils wget ca-certificates bc linux-headers-4.15.0-47-generic \
|
&& apt-get -y install build-essential flex bison xz-utils wget ca-certificates bc \
|
||||||
&& wget ${LINUX_DOWNLOAD_URL} \
|
&& wget ${LINUX_DOWNLOAD_URL} \
|
||||||
&& tar xJf ${LINUX_VERSION}.tar.xz \
|
&& tar xJf ${LINUX_VERSION}.tar.xz \
|
||||||
&& rm ${LINUX_VERSION}.tar.xz \
|
&& rm ${LINUX_VERSION}.tar.xz \
|
||||||
&& cd ${LINUX_VERSION} \
|
&& cd ${LINUX_VERSION} \
|
||||||
&& cp /uml.config .config \
|
&& cp /uml.config .config \
|
||||||
&& make ARCH=um -j10 \
|
&& make ARCH=um olddefconfig \
|
||||||
|
&& make ARCH=um -j17 \
|
||||||
&& mv ./linux / \
|
&& mv ./linux / \
|
||||||
&& cd .. \
|
&& cd .. \
|
||||||
&& rm -rf ${LINUX_VERSION}
|
&& rm -rf ${LINUX_VERSION}
|
||||||
|
|
||||||
FROM xena/alpine
|
FROM debian:testing-slim
|
||||||
|
|
||||||
COPY --from=build /linux /linux
|
# Add slirp
|
||||||
ADD https://xena.greedo.xeserv.us/files/slirp /slirp
|
RUN apt-get update && apt-get install --no-install-recommends -y slirp wget && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Add Tini
|
# Add Tini
|
||||||
ENV TINI_VERSION v0.18.0
|
ENV TINI_VERSION v0.19.0
|
||||||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static /chroot/tini
|
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static /chroot/tini
|
||||||
RUN chmod +x /chroot/tini
|
|
||||||
|
|
||||||
# Set up chroot
|
# Set up chroot
|
||||||
RUN cd /chroot \
|
RUN wget -O - http://dl-cdn.alpinelinux.org/alpine/v3.14/releases/x86_64/alpine-minirootfs-3.14.0-x86_64.tar.gz | tar xz -C /chroot
|
||||||
&& wget -O - http://dl-cdn.alpinelinux.org/alpine/v3.10/releases/x86_64/alpine-minirootfs-3.10.0-x86_64.tar.gz | tar xz \
|
|
||||||
&& chmod +x /linux \
|
COPY --from=build /linux /linux
|
||||||
&& chmod +x /slirp
|
|
||||||
COPY init.sh /chroot/init.sh
|
COPY init.sh /chroot/init.sh
|
||||||
COPY resolv.conf /chroot/etc/resolv.conf
|
|
||||||
|
RUN chmod +x /linux /chroot/tini && echo "nameserver 10.0.2.3" > /chroot/etc/resolv.conf && sed -i 's/https/http/g' /chroot/etc/apk/repositories
|
||||||
|
|
||||||
COPY runlinux.sh /runlinux.sh
|
COPY runlinux.sh /runlinux.sh
|
||||||
CMD /runlinux.sh
|
|
||||||
|
ENTRYPOINT [ "/runlinux.sh" ]
|
||||||
|
|
||||||
|
8
init.sh
8
init.sh
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
mount -t proc proc proc/
|
mount -t proc proc proc/
|
||||||
mount -t sysfs sys sys/
|
mount -t sysfs sys sys/
|
||||||
ifconfig eth0 10.0.2.14 netmask 255.255.255.240 broadcast 10.0.2.15
|
ip link set eth0 up
|
||||||
route add default gw 10.0.2.2
|
ip address add 10.0.2.15/24 dev eth0
|
||||||
|
ip route add default via 10.0.2.2
|
||||||
|
|
||||||
reset
|
|
||||||
uname -av
|
uname -av
|
||||||
echo "networking set up"
|
echo "networking set up"
|
||||||
|
|
||||||
exec /tini /bin/sh
|
exec /tini /bin/ash -- -i
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
nameserver 1.1.1.1
|
|
||||||
nameserver 8.8.8.8
|
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
export TMP=/chroot
|
export TMP=/chroot
|
||||||
exec /chroot/tini /linux root=/dev/root rootflags=/chroot rootfstype=hostfs rw mem=128M udb0=alpine-root verbose eth0=slirp,,/slirp init=/init.sh
|
exec /chroot/tini /linux root=/dev/root rootflags=/chroot rootfstype=hostfs rw mem=128M udb0=alpine-root verbose eth0=slirp,,slirp-fullbolt init=/init.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user