fix: update arm docker base to node 24

This commit is contained in:
NGPixel
2026-05-01 06:15:46 -04:00
parent da64dcdd03
commit ec36eb2d86
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -362,7 +362,7 @@ jobs:
# SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK # SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
- name: Notify Telegram Channel - name: Notify Telegram Channel
uses: appleboy/telegram-action@v0.1.1 uses: appleboy/telegram-action@v1.0.1
with: with:
to: ${{ secrets.TELEGRAM_TO }} to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }} token: ${{ secrets.TELEGRAM_TOKEN }}
@@ -384,7 +384,7 @@ jobs:
# needs: [release] # needs: [release]
# steps: # steps:
# - uses: actions/checkout@v4 # - uses: actions/checkout@v6
# - name: Set Version Variables # - name: Set Version Variables
# run: | # run: |
+2 -2
View File
@@ -1,7 +1,7 @@
# ========================= # =========================
# --- BUILD NPM MODULES --- # --- BUILD NPM MODULES ---
# ========================= # =========================
FROM node:20-alpine AS build FROM node:24-alpine AS build
RUN apk add yarn g++ make cmake python3 --no-cache RUN apk add yarn g++ make cmake python3 --no-cache
@@ -16,7 +16,7 @@ RUN yarn patch-package
# =============== # ===============
# --- Release --- # --- Release ---
# =============== # ===============
FROM node:20-alpine FROM node:24-alpine
LABEL maintainer="requarks.io" LABEL maintainer="requarks.io"
RUN apk add bash curl git openssh gnupg sqlite --no-cache && \ RUN apk add bash curl git openssh gnupg sqlite --no-cache && \