From 2bba8ccfcda704111847cc770e834564d91fd050 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Mon, 15 Nov 2021 09:57:55 +0100 Subject: [PATCH] force amd64 plateform for docker and add changelog --- .github/workflows/ci.yml | 4 ++++ CHANGES.md | 4 ++++ docker-compose.yml | 2 ++ 3 files changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96f88589d..fa365ce4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -135,6 +135,8 @@ jobs: if: github.ref == 'refs/heads/master' uses: docker/build-push-action@v2 with: + # See https://github.com/developmentseed/titiler/discussions/387 + platforms: linux/amd64 context: . file: Dockerfile push: true @@ -148,6 +150,8 @@ jobs: if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release' uses: docker/build-push-action@v2 with: + # See https://github.com/developmentseed/titiler/discussions/387 + platforms: linux/amd64 context: . file: Dockerfile push: true diff --git a/CHANGES.md b/CHANGES.md index 253cf7aea..b78333ba1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Release Notes +## 0.4.0a1 (2021-11-12) + +* fix titiler packages cross dependencies + ## 0.4.0a0 (2021-11-12) * remove python 3.6 supports (related to morecantile/pyproj update) diff --git a/docker-compose.yml b/docker-compose.yml index 3535a9c12..555536426 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,6 +2,8 @@ version: '3' services: titiler: + # See https://github.com/developmentseed/titiler/discussions/387 + platform: linux/amd64 build: context: . dockerfile: Dockerfile