No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #!/bin/bash
-
- # fetch latest release tag
- CHATGPT_ON_WECHAT_TAG=`curl -sL "https://api.github.com/repos/zhayujie/chatgpt-on-wechat/releases/latest" | \
- grep '"tag_name":' | \
- sed -E 's/.*"([^"]+)".*/\1/'`
-
- # build image
- docker build -f Dockerfile.debian \
- --build-arg CHATGPT_ON_WECHAT_VER=$CHATGPT_ON_WECHAT_TAG \
- -t zhayujie/chatgpt-on-wechat .
-
- # tag image
- docker tag zhayujie/chatgpt-on-wechat zhayujie/chatgpt-on-wechat:debian
- docker tag zhayujie/chatgpt-on-wechat zhayujie/chatgpt-on-wechat:$CHATGPT_ON_WECHAT_TAG-debian
|