mosenioring/ci/images/gradle-node/Dockerfile
Oskar Kapala 4543c2b7c2
Some checks failed
ci / backend (push) Failing after 1m18s
ci / flutter (push) Failing after 35s
Update Gradle image in CI to JDK 21
2026-01-16 15:05:02 +01:00

10 lines
334 B
Docker

FROM gradle:8.12-jdk21
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git ca-certificates curl \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& node --version && npm --version && git --version \
&& rm -rf /var/lib/apt/lists/*