From 472932806d2fea1772ced7d0fc828934ddc0a2e0 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 3 Mar 2024 21:07:56 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=97=20=20Remove=20verbose=20logging,?= =?UTF-8?q?=20support=20linux/amd64,linux/arm64=20architectures?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docker-build-publish.yml | 7 +------ Dockerfile | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker-build-publish.yml b/.github/workflows/docker-build-publish.yml index 49e05512..e0b27a90 100644 --- a/.github/workflows/docker-build-publish.yml +++ b/.github/workflows/docker-build-publish.yml @@ -18,10 +18,6 @@ env: DH_IMAGE: ${{ secrets.DOCKER_REPO }} GH_IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }} -permissions: - contents: read - packages: write - jobs: docker: runs-on: ubuntu-latest @@ -81,8 +77,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} push: true - no-cache: true diff --git a/Dockerfile b/Dockerfile index 960edd61..676ee4ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ WORKDIR /app # Install app dependencies COPY package.json yarn.lock ./ -RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 300000 --network-concurrency 1 --verbose +RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 300000 --network-concurrency 1 # Copy over all project files and folders to the working directory COPY . ./