liuyuqi-dellpc 10 months ago
parent
commit
6ac2ed264d

+ 6 - 1
README.md

@@ -91,7 +91,7 @@ GitHub action 基于 yaml 语法,超级简单,但是 github steps 构建每
 | android-eclipse\.github\workflows\main.yml |  采用 eclipse 开发的采用这个 action |
 
 
-20 年 vscode 开源的容器demo项目,修改为国内镜像。如今,使用通用镜像即可。
+20 年 vscode 开源的容器 demo 项目,修改为国内镜像。如今,使用通用镜像即可。
 ```
 git clone https://github.com/Microsoft/vscode-remote-try-node
 git clone https://github.com/Microsoft/vscode-remote-try-python
@@ -113,3 +113,8 @@ Copyright (c) 2021 [liuyuqi.gov@msn.cn](mailto:liuyuqi.gov@msn.cn). All rights r
 Licensed under the [Apache 2.0](LICENSE.md) license.
 
 
+## Reference
+
+[github-actions-creator 文档](https://wiki.yoqi.me/github-actions-creator/#/)
+
+

+ 1 - 1
docs/ide/codespaces.md

@@ -1,6 +1,6 @@
 # Codespaces
 
-Github 60小时/月免费开发环境,支持远程容器开发,Vscode。注意需要及时删除环境,不用磁盘也会累积计算。
+Github 60 小时/月免费开发环境,支持远程容器开发,Vscode。注意需要及时删除环境,不用磁盘也会累积计算。
 
 ## 使用
 

+ 15 - 2
python/Dockerfile

@@ -1,7 +1,20 @@
-FROM python:3.8
+FROM python:3.12 as base
+
+LABEL email="liuyuqi<liuyuqi.gov@msn.cn>"
+# ENV key=value
 WORKDIR /app
 ADD . ./app
 RUN pip install -r requirements.txt
 
+FROM base as builder
+RUN pip install pyinstaller
+RUN pyinstaller -F -c demo.py
 
-CMD [ "python","app.py" ]
+FROM base as runner
+COPY --from=builder . /app/
+WORKDIR /app
+# EXPOSE 8080
+# ENTRYPOINT [ "executable" ]
+# VOLUME [ "/data" ]
+# CMD [ "/bin/bash" ]
+CMD [ "python","main.py" ]

+ 0 - 8
python/Dockerfile-build

@@ -1,8 +0,0 @@
-FROM python:3.8 as builder
-LABEL email="liuyuqi<liuyuqi.gov@msn.cn>"
-WORKDIR /workspaces
-
-# RUN pip install -r requirements.txt
-
-VOLUME [ "/workspaces" ]
-CMD [ "/bin/bash" ]

+ 0 - 13
python/Dockerfile-pyinstall

@@ -1,13 +0,0 @@
-FROM python:3.8 as base
-WORKDIR /app
-ADD . ./app
-RUN pip install -r requirements.txt
-
-
-FROM base as builder
-RUN pip install pyinstaller
-RUN pyinstaller -F -c demo.py
-
-FROM base as runner
-COPY --from=builder . /app/
-CMD [ "python", "main.py" ]

+ 0 - 6
python/backend/Dockerfile

@@ -1,6 +0,0 @@
-# Build stage
-FROM python:3.8
-
-WORKDIR /app
-
-CMD ["python", "main.py"]

+ 6 - 1
ruby/.gitpod.Dockerfile

@@ -1,8 +1,13 @@
 FROM gitpod/workspace-postgres
 USER gitpod
 
+WORKDIR /app
 # Install the Ruby version specified in '.ruby-version'
 COPY --chown=gitpod:gitpod .ruby-version /tmp
 RUN echo "rvm_gems_path=/home/gitpod/.rvm" > ~/.rvmrc
 RUN bash -lc "rvm reinstall ruby-$(cat /tmp/.ruby-version) && rvm use ruby-$(cat /tmp/.ruby-version) --default && gem install rails"
-RUN echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc
+RUN echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc
+
+# EXPOSE 8080
+# VOLUME [ "/data" ]
+CMD [ "/bin/bash" ]

+ 13 - 13
ruby/Dockerfile

@@ -1,17 +1,17 @@
-FROM node:lts-alpine as base
-RUN apk add --no-cache tini
-ENV NODE_ENV=production
-USER  node
-WORKDIR /app
-COPY package*.json ./
-RUN npm install
-COPY . .
-RUN chown -R appuser:appgroup /app
-EXPOSE 8080
+FROM 3.4-rc-alpine
+
 
-FROM base as builder
+# ENV key=value
+WORKDIR /app
 
+# Install Ruby and Rails
 
-FROM base as runner
+# Install the Ruby version specified in '.ruby-version'
+COPY --chown=gitpod:gitpod .ruby-version /tmp
+RUN echo "rvm_gems_path=/home/gitpod/.rvm" > ~/.rvmrc
+RUN bash -lc "rvm reinstall ruby-$(cat /tmp/.ruby-version) && rvm use ruby-$(cat /tmp/.ruby-version) --default && gem install rails"
+RUN echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc
 
-CMD [ "npm", "start" ]
+# EXPOSE 8080
+# VOLUME [ "/data" ]
+CMD [ "/bin/bash" ]

+ 1 - 1
ruby/build.yml

@@ -12,6 +12,7 @@ jobs:
       matrix:
         node-version: [12.x]
     runs-on: ubuntu-latest
+    
     steps:
     - name: Check out branch
       uses: actions/checkout@v2
@@ -30,4 +31,3 @@ jobs:
         path: ${{ env.MINT_PATH }}
         key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
         restore-keys: ${{ runner.os }}-mint-
-        

+ 3 - 2
ruby/docker-compose.debug.yml

@@ -1,8 +1,8 @@
 version: '3.4'
 
 services:
-  githubactionscreator:
-    image: githubactionscreator
+  ruby:
+    image: jianboy/ruby:2.5.1
     build:
       context: .
       dockerfile: ./Dockerfile
@@ -11,3 +11,4 @@ services:
     ports:
       - 3000:3000
       - 5005:5005
+    # volumes:

+ 2 - 0
rust/docker-compose.debug.yml

@@ -11,3 +11,5 @@ services:
     ports:
       - 3000:3000
       - 5005:5005
+
+