mirror of https://github.com/Lissy93/dashy.git
🏗 Remove verbose logging, support linux/amd64,linux/arm64 architectures
This commit is contained in:
parent
70651b75f7
commit
472932806d
|
@ -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
|
|
||||||
|
|
|
@ -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 . ./
|
||||||
|
|
Loading…
Reference in New Issue