🏗 Remove verbose logging, support linux/amd64,linux/arm64 architectures

This commit is contained in:
Alicia Sykes 2024-03-03 21:07:56 +00:00
parent 70651b75f7
commit 472932806d
2 changed files with 2 additions and 7 deletions

View File

@ -18,10 +18,6 @@ env:
DH_IMAGE: ${{ secrets.DOCKER_REPO }} DH_IMAGE: ${{ secrets.DOCKER_REPO }}
GH_IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }} GH_IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
permissions:
contents: read
packages: write
jobs: jobs:
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -81,8 +77,7 @@ jobs:
with: with:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7 platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
push: true push: true
no-cache: true

View File

@ -16,7 +16,7 @@ WORKDIR /app
# Install app dependencies # Install app dependencies
COPY package.json yarn.lock ./ 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 over all project files and folders to the working directory
COPY . ./ COPY . ./