From a8a6bd66cc199aa6ef7458905443596e15770a6b Mon Sep 17 00:00:00 2001 From: skimrme Date: Wed, 21 May 2025 06:19:22 +0800 Subject: [PATCH] =?UTF-8?q?dev-log:=20=E4=BF=9D=E6=8C=81=E5=92=8C=E4=B9=8B?= =?UTF-8?q?=E5=89=8D=E7=9A=84v0.1=E7=9A=84=E7=89=88=E6=9C=AC=E4=B8=80?= =?UTF-8?q?=E6=A8=A1=E4=B8=80=E6=A0=B7=EF=BC=8C=E6=9A=82=E6=97=B6=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E4=BB=BB=E4=BD=95=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 目前正在构建中, 目前已经取得进展 dev-ver: v1.0 预计完善: - 编译内核所需要的所有软件, 打开就能编译 --- v1.0/- | 3 +++ v1.0/Dockerfile | 40 ++++++++++++++++++++++++++++++++++++++++ v1.0/warning | 3 +++ 3 files changed, 46 insertions(+) create mode 100644 v1.0/- create mode 100644 v1.0/Dockerfile create mode 100644 v1.0/warning diff --git a/v1.0/- b/v1.0/- new file mode 100644 index 0000000..ae6bc99 --- /dev/null +++ b/v1.0/- @@ -0,0 +1,3 @@ +warning: 警告!这个是正在构建中的的容器蓝图 + + - 不保证可以使用!!! diff --git a/v1.0/Dockerfile b/v1.0/Dockerfile new file mode 100644 index 0000000..0dec51f --- /dev/null +++ b/v1.0/Dockerfile @@ -0,0 +1,40 @@ +FROM alpine:3.21 + +# del offical mirrors +#RUN sed -i '/^#/!d' /etc/apk/repositories + +# rm && touch /etc/apk/repositories +#RUN rm /etc/apk/repositories && touch /etc/apk/repositories + +# echo mirrors.tuna.tsinghua.edu.cn (CHINA) +#RUN echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.21/main" >> /etc/apk/repositories +#RUN echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.21/community" >> /etc/apk/repositories +#RUN echo "https://mirrors.tuna.tsinghua.edu.cn/plpine/v3.21/testing" >> /etc/apk/repositories + +# echo mirrors.ustc.edu.cn (CHINA) +#RUN echo "https//mirrors.ustc.edu.cn/alpine/v3.21/main" >> /etc/apk/repositories +#RUN echo "https://mirrors.ustc.edu.cn/alpine/v3.21/community" >> /etc/apk/repositories +#RUN echo "https://mirrors.ustc.edu.cn/alpine/v3.21/testing" >> /etc/apk/repositories + +# echo dl-cdn.alpinelinux.org (OFFICAL) +#RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.21/main" >> /etc/apk/repositories +#RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.21/community" >> /etc/apk/repositories +#RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.21/testing" >> /etc/apk/repositories + +# ping (TEST) +#RUN ping baidu.com + +# apk update +RUN apk update + +# install page--"build-base | alpine-sdk | zlib-dev | ncurses-dev | wget | curl | w3m | lftp | openssh | screen | vim | nano | bash | coreutils | tar | unzip net-tools | htop | git |" +RUN apk add --no-cache build-base alpine-sdk zlib-dev ncurses-dev wget curl w3m lftp openssh screen vim nano bash coreutils tar unzip net-tools htop git + +# cd root +RUN cd /root + +# mkdir mlt +RUN mkdir mlt + +# WORK IN /root/mlt +WORKDIR /root/mlt diff --git a/v1.0/warning b/v1.0/warning new file mode 100644 index 0000000..ae6bc99 --- /dev/null +++ b/v1.0/warning @@ -0,0 +1,3 @@ +warning: 警告!这个是正在构建中的的容器蓝图 + + - 不保证可以使用!!!