mirror of
https://github.com/riptidewave93/UNVR-NAS.git
synced 2025-03-09 15:40:13 +00:00
feat: initial upload
Initial public release
This commit is contained in:
commit
85a5bd66e0
30 changed files with 943 additions and 0 deletions
49
Dockerfile
Normal file
49
Dockerfile
Normal file
|
@ -0,0 +1,49 @@
|
|||
# Our AIO builder docker file
|
||||
FROM debian:12
|
||||
|
||||
RUN mkdir /repo
|
||||
COPY ./scripts/vars.sh /vars.sh
|
||||
COPY ./scripts/docker/setup_mkimage.sh /setup_mkimage.sh
|
||||
|
||||
RUN apt-get update && apt-get install -yq \
|
||||
autoconf \
|
||||
bc \
|
||||
binfmt-support \
|
||||
bison \
|
||||
bsdextrautils \
|
||||
build-essential \
|
||||
cpio \
|
||||
debootstrap \
|
||||
debhelper \
|
||||
device-tree-compiler \
|
||||
dosfstools \
|
||||
dwarves \
|
||||
fakeroot \
|
||||
flex \
|
||||
genext2fs \
|
||||
git \
|
||||
kmod \
|
||||
kpartx \
|
||||
libconfuse-common \
|
||||
libconfuse-dev \
|
||||
libelf-dev \
|
||||
libncurses-dev \
|
||||
libssl-dev \
|
||||
lvm2 \
|
||||
mtools \
|
||||
parted \
|
||||
pkg-config \
|
||||
python3-dev \
|
||||
python3-pyelftools \
|
||||
python3-setuptools \
|
||||
qemu-utils \
|
||||
qemu-user-static \
|
||||
rsync \
|
||||
swig \
|
||||
unzip \
|
||||
uuid-runtime \
|
||||
wget \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& /setup_mkimage.sh \
|
||||
&& rm /setup_mkimage.sh
|
Loading…
Add table
Add a link
Reference in a new issue