liuyuqi-dellpc 8 months ago
parent
commit
990a0e238c

+ 0 - 14
CONTRIBUTING.md

@@ -37,17 +37,3 @@ Do not add your issue as a comment to an existing issue unless it's for the iden
 
 The more information you can provide, the more likely someone will be successful at reproducing the issue and finding a fix.
 
-
-## Pull Requests
-
-When creating Pull Requests, follow the most [common good practices](https://gist.github.com/MarcDiethelm/7303312), 
-respect the swiftlint static checks (modifications/exceptions may be discussed), and create an awesome description so 
-we can understand it without asking any whys.
-
-## Commit Messages
-
-Commit messages matter. Aim to be succinct and descriptive at the same time. We consider as a good source 
-[How to Write a Git Commit Message](https://chris.beams.io/posts/git-commit/) from Chris Beams.
-# Thank You!
-
-Your contributions to open source, large or small, make great projects like this possible. Thank you for taking the time to contribute.

+ 2 - 5
docs/dev/flutter.md

@@ -48,13 +48,10 @@ android sdk  21-33
 coding 目前在用的版本:
 
 ```
-sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.9-flutter
+sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.12-flutter
 ```
-支持flutter开发
 
-```
-sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.11-flutter
-```
+
 支持 flutter 开发
 更新 python3 支持,环境变量添加到.bashrc
 

+ 0 - 4
docs/dev/nodejs.md

@@ -72,10 +72,6 @@ docker run -it --rm -v /workspace:/workspaces jianboy/node-build:20
 
 yarn build
 
-
-docker build -t sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.4 .
-
-
 docker build -t sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.5-flutter -f '.ide/Dockerfile-allinone-flutter'.
 
 

+ 1 - 1
flutter/.ide/Dockerfile-Allinone-flutter

@@ -213,7 +213,7 @@ RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
     echo done
 
 # install manual
-# docker run -it --rm -v /workspace:/workspaces sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.11-flutter /bin/bash
+# docker run -it --rm -v /workspace:/workspaces sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.12-flutter /bin/bash
 RUN code-server --install-extension ms-python.vscode-pylance-2024.6.103.vsix
 # code-server --install-extension ms-dotnettools.csharp &&\
 COPY ./frp /opt/frp

+ 0 - 0
nodejs/.ide/Dockerfile-java → flutter/.ide/Dockerfile-java


+ 0 - 0
nodejs/.ide/Dockerfile-node → flutter/.ide/Dockerfile-node


+ 0 - 0
nodejs/.ide/Dockerfile-php → flutter/.ide/Dockerfile-php


+ 0 - 0
nodejs/.ide/Dockerfile-python → flutter/.ide/Dockerfile-python


+ 0 - 1
nodejs/.ide/Dockerfile

@@ -1 +0,0 @@
-FROM sift-docker.pkg.coding.net/flutter-team/dev-container/dev-allinone:1.0.4

+ 0 - 85
nodejs/.ide/Dockerfile-Allinone

@@ -1,85 +0,0 @@
-FROM openjdk:11 as builder
-
-ENV MAVEN_VERSION=3.9.5 \
-    GRADLE_VERSION=7.3.3
-
-RUN sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
-RUN sed -i s@/security.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
-RUN apt-get update
-
-# install gradle
-RUN wget https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip -P /tmp
-RUN unzip -d /opt/gradle /tmp/gradle-*.zip && rm -rf /tmp/gradle-*.zip
-ENV GRADLE_HOME=/opt/gradle/gradle-${GRADLE_VERSION}
-ENV PATH=$PATH:$GRADLE_HOME/bin
-
-# install maven
-RUN wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.zip -P /tmp
-RUN unzip -d /opt/maven /tmp/apache-maven-*.zip
-ENV MAVEN_HOME=/opt/maven/apache-maven-${MAVEN_VERSION}
-ENV PATH=$PATH:$MAVEN_HOME/bin
-
-# install python3.8
-# RUN apt-get update && \
-#     apt-get install -y python3.8
-RUN mkdir -p ~/.pip
-RUN echo '\n\
-    [global] \n\
-    trusted-host=mirrors.aliyun.com \n\
-    index-url=https://mirrors.aliyun.com/pypi/simple/ \n\
-    ' > ~/.pip/pip.conf
-
-RUN wget http://fileshare.yoqi.me/d/DevFiles/Develop/Python/get-pip.py?sign=17C5fjx9l5VpBJ6FCHonje5nEEkylSINsPlKsASVkRc=:1702263152 -O get-pip.py
-RUN python3 get-pip.py
-
-# install go1.21
-RUN wget https://go.dev/dl/go1.21.4.linux-amd64.tar.gz && \
-    tar -C /usr/local -xzf go1.21.4.linux-amd64.tar.gz
-ENV PATH=$PATH:/usr/local/go/bin
-RUN export GOPROXY="https://goproxy.io,direct"
-
-# install nodejs20
-RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
-RUN apt-get install -y nodejs
-RUN npm config set registry http://registry.npm.taobao.org --global
-RUN npm install yarn pnpm
-
-LABEL email="liuyuqi<liuyuqi.gov@msn.cn>"
-WORKDIR /workspaces
-# RUN mvn package
-
-RUN apt-get install -y wget unzip openssh-server
-RUN ln -s /usr/bin/python3.9  /usr/bin/python
-
-# 指定字符集支持命令行输入中文(根据需要选择字符集)
-ENV LANG C.UTF-8
-ENV LANGUAGE C.UTF-8
-
-# set path
-RUN echo '\n\
-    export PATH=$PATH:$GRADLE_HOME/bin \n\
-    export JAVA_HOME=/usr/local/openjdk-11 \n\
-    export PATH=$PATH:$JAVA_HOME/bin \n\
-    export PATH=$PATH:$MAVEN_HOME/bin \n\
-    export PATH=$PATH:/usr/local/go/bin \n\
-    export GOPROXY="https://goproxy.io,direct" \n\
-    ' >> ~/.bashrc
-
-
-# install vscode and extension
-RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
-    code-server --install-extension redhat.vscode-yaml &&\
-    code-server --install-extension orta.vscode-jest &&\
-    code-server --install-extension dbaeumer.vscode-eslint &&\
-    code-server --install-extension ms-python.python &&\
-    code-server --install-extension ms-azuretools.vscode-docker &&\
-    code-server --install-extension mhutchie.git-graph &&\
-    code-server --install-extension ardisaurus.gitflow-actions-sidebar &&\
-    code-server --install-extension golang.go &&\
-    code-server --install-extension Vue.volar &&\
-    code-server --install-extension eamodio.gitlens &&\
-    echo done
-
-VOLUME [ "/workspaces" ]
-
-CMD [ "/bin/bash" ]