From a2f9b51d6dfc91f83435a44b1b95de50712b86b9 Mon Sep 17 00:00:00 2001 From: Steven Kessler Date: Sat, 28 Oct 2023 22:58:04 -0400 Subject: [PATCH] chore(updating ci/cd): --- .github/workflows/deploy.yaml | 3 ++- dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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