From 9b681dbec1386fa0701355c150af82e455d13be9 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Sun, 19 Jan 2025 10:30:47 +0100 Subject: [PATCH] Build on Alpine --- .forgejo/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 3a5773a..6f620d8 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -2,10 +2,10 @@ on: [push] jobs: build: runs-on: docker - container: debian:sid + container: eclipse-temurin:21-alpine steps: - name: Install JDK and other deps - run: apt update && apt install --no-install-recommends -y openjdk-21-jdk-headless maven git nodejs curl zstd + run: apk add maven git nodejs curl - name: Checkout uses: https://github.com/actions/checkout@v4