-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5abf327
commit 76214db
Showing
3 changed files
with
97 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,54 @@ | ||
|
||
FROM embox/emdocker as build | ||
FROM debian:bookworm | ||
MAINTAINER Anton Kozlov <[email protected]> | ||
|
||
## python2 (deprecated) | ||
RUN echo "deb http://deb.debian.org/debian bullseye main" > /etc/apt/sources.list.d/bullseye.list | ||
RUN echo "deb http://deb.debian.org/debian bullseye-updates main" >> /etc/apt/sources.list.d/bullseye.list | ||
RUN echo "deb http://security.debian.org bullseye-security main" >> /etc/apt/sources.list.d/bullseye.list | ||
|
||
## Update the repository and install utils | ||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ | ||
sudo \ | ||
iptables \ | ||
openssh-server \ | ||
iproute2 \ | ||
bzip2 \ | ||
unzip \ | ||
xz-utils \ | ||
python3 \ | ||
python2 \ | ||
python-is-python2 \ | ||
curl \ | ||
dpkg \ | ||
make \ | ||
patch \ | ||
cpio \ | ||
build-essential \ | ||
binutils \ | ||
binutils-arm-none-eabi \ | ||
binutils-riscv64-unknown-elf \ | ||
gcc \ | ||
gcc-arm-none-eabi \ | ||
gcc-riscv64-unknown-elf \ | ||
gcc-multilib \ | ||
g++-multilib \ | ||
gdb \ | ||
qemu-system \ | ||
ruby \ | ||
bison \ | ||
flex \ | ||
bc \ | ||
autoconf \ | ||
pkg-config \ | ||
mtd-utils \ | ||
ntfs-3g \ | ||
autotools-dev \ | ||
automake \ | ||
xutils-dev \ | ||
libtool \ | ||
rpcbind \ | ||
nfs-kernel-server \ | ||
nfs-common \ | ||
samba \ | ||
|
@@ -18,53 +64,58 @@ RUN apt-get update && \ | |
expect \ | ||
snmp \ | ||
xvfb \ | ||
xvnc4viewer \ | ||
xauth \ | ||
tigervnc-standalone-server \ | ||
tigervnc-common \ | ||
tigervnc-viewer \ | ||
ffmpeg \ | ||
git \ | ||
mime-support \ | ||
dosfstools && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt /var/cache/apt | ||
rm -rf /var/lib/apt /var/cache/apt && \ | ||
rm /etc/apt/sources.list.d/bullseye.list | ||
|
||
## risc-v crosscompiler | ||
RUN curl -k -L -s "https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.2.0-2019.05.3-x86_64-linux-ubuntu14.tar.gz" | \ | ||
tar -xzC /opt | ||
## Install crosscompilers | ||
RUN for a in aarch64 microblaze mips powerpc sparc; do \ | ||
curl -k -L "https://github.com/embox/crosstool/releases/download/2.42-13.2.0-14.2/$a-elf-toolchain.tar.bz2" | \ | ||
tar -jxC /opt; \ | ||
done | ||
|
||
# x86/test/fs nfs | ||
## Set environment variables | ||
ENV PATH=$PATH:\ | ||
/opt/aarch64-elf-toolchain/bin:\ | ||
/opt/microblaze-elf-toolchain/bin:\ | ||
/opt/mips-elf-toolchain/bin:\ | ||
/opt/powerpc-elf-toolchain/bin:\ | ||
/opt/sparc-elf-toolchain/bin | ||
|
||
## Allow members of group sudo to execute any command | ||
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers | ||
|
||
## x86/test/fs | ||
RUN for i in $(seq 0 9); do \ | ||
mknod /dev/loop$i -m0660 b 7 $i; done | ||
|
||
## x86/test/fs nfs | ||
RUN mkdir -p -m 777 /var/nfs_test | ||
COPY exports /etc/ | ||
|
||
# x86/test/fs cifs | ||
## x86/test/fs cifs | ||
RUN mkdir -p -m 777 /var/cifs_test | ||
COPY smb.conf /etc/samba/ | ||
COPY smb.conf.public /etc/samba/ | ||
RUN cat /etc/samba/smb.conf.public >> /etc/samba/smb.conf && \ | ||
rm /etc/samba/smb.conf.public | ||
|
||
# x86/test/net | ||
## x86/test/net | ||
COPY dhcpd.conf /etc/dhcp/ | ||
COPY isc-dhcp-server /etc/default/ | ||
COPY ntp.conf /etc/ | ||
RUN useradd -u 65534 -o -ms /bin/bash rlogin_user | ||
RUN /bin/echo -e "rlogin\nrlogin" | passwd rlogin_user | ||
|
||
FROM scratch | ||
MAINTAINER Anton Kozlov <[email protected]> | ||
|
||
COPY --from=build / / | ||
|
||
ENV PATH=$PATH:\ | ||
/opt/gcc-arm-none-eabi-6-2017-q2-update/bin:\ | ||
/opt/gcc-arm-8.3-2019.03-x86_64-aarch64-elf/bin:\ | ||
/opt/riscv64-unknown-elf-gcc-8.2.0-2019.05.3-x86_64-linux-ubuntu14/bin:\ | ||
/opt/microblaze-elf-toolchain/bin:\ | ||
/opt/mips-elf-toolchain/bin:\ | ||
/opt/powerpc-elf-toolchain/bin:\ | ||
/opt/sparc-elf-toolchain/bin | ||
|
||
CMD mount -t tmpfs none /var/nfs_test && \ | ||
service rpcbind restart && \ | ||
/etc/init.d/nfs-kernel-server restart && \ | ||
/etc/init.d/nmbd restart && \ | ||
/etc/init.d/smbd restart && \ | ||
/etc/init.d/ntp restart && \ | ||
inetd && \ | ||
/usr/local/sbin/docker_start.sh | ||
|
||
|
||
systemctl restart rpcbind && \ | ||
systemctl restart nfs-kernel-server && \ | ||
systemctl restart nmbd && \ | ||
systemctl restart smbd && \ | ||
systemctl restart ntp && \ | ||
systemctl restart inetd |
Oops, something went wrong.