Skip to content

Commit

Permalink
Add Dockerfile and github action to push docker image #10
Browse files Browse the repository at this point in the history
  • Loading branch information
haibbo committed Apr 15, 2023
1 parent 67b0831 commit 5a65465
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/docker_build_push.yml
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



14 changes: 14 additions & 0 deletions Dockerfile
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

0 comments on commit 5a65465

Please sign in to comment.