liuyuqi-dellpc 8 months ago
parent
commit
5126b17318
4 changed files with 15 additions and 50 deletions
  1. 15 4
      flutter/.ide/Dockerfile-python
  2. 0 15
      nodejs/.coding-ci.yml
  3. 0 18
      python/.coding-ci.yml
  4. 0 13
      python/.ide/Dockerfile

+ 15 - 4
flutter/.ide/Dockerfile-python

@@ -1,10 +1,21 @@
 FROM python:3.10
+
+# install vscode and extension
+RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
+    code-server --install-extension ms-python.python &&\
+    code-server --install-extension eamodio.gitlens &&\
+    echo done
+
+RUN apt-get update && apt-get install -y wget unzip openssh-server
+
+# 指定字符集支持命令行输入中文(根据需要选择字符集)
+ENV LANG C.UTF-8
+ENV LANGUAGE C.UTF-8
+
 WORKDIR /app
 
 VOLUME [ "/app" ]
 
-# docker build -t python:3.10 -f '.ide/Dockerfile-python' .
-# docker run -rm -it -v /workspace:/app python:3.10
+# docker build -t jianboy/python:3.10 -f '.ide/Dockerfile-python' .
+# docker run -rm -it -v /workspace:/app jianboy/python:3.10 /bin/bash
 # python main.py
-
-

+ 0 - 15
nodejs/.coding-ci.yml

@@ -1,15 +0,0 @@
-$:
-  api_trigger_vscode:
-    clouddev:
-      runner:
-        cpus: 1
-      docker:
-        cpus: 1
-        build: .ide/Dockerfile
-        image: codingci/default-env:latest
-      services:
-        - vscode
-        - docker
-      stages:
-        - name: 开启云原生远程开发
-          type: vscode:go

+ 0 - 18
python/.coding-ci.yml

@@ -1,18 +0,0 @@
-$:
-  api_trigger_vscode:
-    clouddev:
-      runner:
-        cpus: 1
-      docker:
-        cpus: 1
-        build: .ide/Dockerfile
-        image: codingci/default-env:latest
-      services:
-        - vscode
-        - docker
-      stages:
-        # - name: 执行自定义脚本
-        #   script:
-        #     - pip install -r requirements.txt
-        - name: 开启云原生远程开发
-          type: vscode:go

+ 0 - 13
python/.ide/Dockerfile

@@ -1,13 +0,0 @@
-FROM python:3.8
-
-# install vscode and extension
-RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
-    code-server --install-extension ms-python.python &&\
-    code-server --install-extension eamodio.gitlens &&\
-    echo done
-
-RUN apt-get update && apt-get install -y wget unzip openssh-server
-
-# 指定字符集支持命令行输入中文(根据需要选择字符集)
-ENV LANG C.UTF-8
-ENV LANGUAGE C.UTF-8