Skip to content

🐛 Bug: Fix the bug that the official Claude API cannot use PNG format… #137

🐛 Bug: Fix the bug that the official Claude API cannot use PNG format…

🐛 Bug: Fix the bug that the official Claude API cannot use PNG format… #137

Workflow file for this run

name: Docker Build and Publish Docker Image
on:
push:
branches:
- main
paths:
- main.py
- utils.py
- models.py
- request.py
- Dockerfile
- response.py
- .dockerignore
- requirements.txt
- docker-compose.yml
- .github/workflows/main.yml
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Login to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: yym68686/uni-api:latest