From 473967aec22af8581e75fc1eb3afc85440a9d056 Mon Sep 17 00:00:00 2001 From: Jimi Dodd-o Date: Thu, 15 Aug 2024 15:15:22 -0400 Subject: [PATCH] No longer build 32 bit images that are incompatible w/ prefect (#41) --- .github/workflows/release-build-deploy.yaml | 2 +- Dockerfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release-build-deploy.yaml b/.github/workflows/release-build-deploy.yaml index e4773e6..1d3236e 100644 --- a/.github/workflows/release-build-deploy.yaml +++ b/.github/workflows/release-build-deploy.yaml @@ -47,7 +47,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm64 tags: ${{ steps.metadata.outputs.tags }} labels: ${{ steps.metadata.outputs.labels }} push: true diff --git a/Dockerfile b/Dockerfile index 88ce68a..cd3b343 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,6 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 WORKDIR /app - COPY ./ ./ ENV PREFECT_HOME=/app ENV PREFECT_LOGGING_EXTRA_LOGGERS=prometheus-prefect-exporter