diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index a93e794..8146f3b 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -20,7 +20,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ${{github.repository}} + images: ghcr.io/${{github.repository}} #---------------------------------------------- # setup extra builder #---------------------------------------------- @@ -45,5 +45,6 @@ jobs: with: context: . push: true + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/dockerfile b/dockerfile index 862d5b6..6f0d103 100644 --- a/dockerfile +++ b/dockerfile @@ -3,7 +3,7 @@ FROM python:3.12-slim ENV PIP_DISABLE_PIP_VERSION_CHECK=on \ POETRY_VIRTUALENVS_CREATE=false \ PIP_NO_CACHE_DIR=off \ - POETRY_VERSION=1.5.0 + POETRY_VERSION=1.6.1 WORKDIR /src