From 369d7926a9f298e9252c01e718a2243d3bf37e79 Mon Sep 17 00:00:00 2001 From: sstent Date: Sun, 14 Dec 2025 06:12:21 -0800 Subject: [PATCH] sync --- .dockerignore | 28 +++++++++++++ .github/workflows/container-build.yml | 57 +++++++++++++++++++++++++++ .gitignore | 1 + 3 files changed, 86 insertions(+) create mode 100644 .dockerignore create mode 100644 .github/workflows/container-build.yml create mode 100644 .gitignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..50532fd --- /dev/null +++ b/.dockerignore @@ -0,0 +1,28 @@ +# Ignore virtualenv +.venv +venv + +# Ignore Python cache +__pycache__/ +*.pyc +*.pyo +*.pyd + +# Ignore editor and OS files +.vscode +.idea +.DS_Store +*.swo +*.swp + +# Ignore git files +.git +.gitignore + +# Ignore database and log files +*.db +*.log +*.json + +# Ignore test files +test.md \ No newline at end of file diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml new file mode 100644 index 0000000..26956c4 --- /dev/null +++ b/.github/workflows/container-build.yml @@ -0,0 +1,57 @@ +name: Build and Push Docker Image + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + build-and-push: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set registry URL + id: registry + run: | + if [ "${{ github.server_url }}" = "https://github.com" ]; then + echo "url=ghcr.io" >> $GITHUB_OUTPUT + else + echo "url=${{ github.server_url }}" | sed 's|https://||' >> $GITHUB_OUTPUT + fi + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Log in to Container Registry + uses: docker/login-action@v3 + with: + registry: ${{ steps.registry.outputs.url }} + username: ${{ github.actor }} + password: ${{ secrets.PACKAGE_TOKEN || secrets.GITHUB_TOKEN }} + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Build and push multi-arch Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: true + platforms: linux/amd64,linux/arm64 + tags: | + ${{ steps.registry.outputs.url }}/${{ github.repository }}:latest + ${{ steps.registry.outputs.url }}/${{ github.repository }}:${{ github.sha }} + cache-from: type=gha + cache-to: type=gha,mode=max + + # --- AUTOMATIC REPOSITORY LINKING --- + # This label adds an OCI annotation that Gitea uses to automatically + # link the package to the repository source code. + labels: org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..adbb97d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +data/ \ No newline at end of file