-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile and github action to push docker image #10
- Loading branch information
Showing
2 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Build and Push Docker Image | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build_and_push: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: haibbo/cf-openai-azure-proxy:${{ github.ref_name }} | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: | | ||
haibbo/cf-openai-azure-proxy:${{ github.ref_name }} | ||
haibbo/cf-openai-azure-proxy:latest | ||
platforms: linux/amd64,linux/arm64/v8 | ||
- name: Create GitHub Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ACTIONS_RELEASE_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
body: | | ||
Release notes for ${{ github.ref }} | ||
```sh | ||
docker run -d -p 8787:8787 -t cf-azure-openai-proxy \ | ||
--env RESOURCE_NAME=codegpt \ | ||
--env DEPLOY_NAME=gpt3 \ | ||
haibbo/cf-openai-azure-proxy:latest | ||
``` | ||
Docker image is available at: | ||
- `haibbo/cf-openai-azure-proxy:${{ github.ref_name }}` | ||
- `haibbo/cf-openai-azure-proxy:latest` | ||
Enjoy! | ||
draft: false | ||
prerelease: false | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM node:18.12-slim | ||
|
||
WORKDIR /app | ||
|
||
# 安装 Cloudflare Workers CLI 工具 | ||
RUN npm install -g [email protected] | ||
|
||
ENV WRANGLER_SEND_METRICS=false | ||
|
||
# 复制 Workers 脚本到镜像 | ||
COPY cf-openai-azure-proxy.js . | ||
|
||
# 启动本地开发服务器 | ||
CMD wrangler dev cf-openai-azure-proxy.js --local --var RESOURCE_NAME:$RESOURCE_NAME DEPLOY_NAME:$DEPLOY_NAME |