diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 9e4e85d..0000000 --- a/LICENSE +++ /dev/null @@ -1,9 +0,0 @@ -MIT License - -Copyright (c) 2025 skimrme - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index bf8fe8f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# dockerfile-mlt-builder-alpine - -dockerfile构建容器 -名字是mlt-builder -构建系统是alpine \ No newline at end of file diff --git a/v0.1/Dockerfile b/v0.1/Dockerfile deleted file mode 100644 index 0dec51f..0000000 --- a/v0.1/Dockerfile +++ /dev/null @@ -1,40 +0,0 @@ -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