just arm
Build KX3DEX.radio / Build and Deploy (push) Failing after 22s Details

master
Dex 2024-03-29 23:54:19 -04:00
parent bf32f4a33a
commit 325d736536
2 changed files with 6 additions and 3 deletions

View File

@ -13,10 +13,10 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install QEMU
run: apt-get update && apt-get install -y qemu-user-static
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
- name: Setup Node

View File

@ -3,6 +3,9 @@ FROM node:18-alpine3.19 AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn config set network-timeout 100000
RUN apk add g++ make py3-pip
RUN yarn global add node-gyp
RUN yarn install
# Rebuild the source code only when needed