mosenioring/ci/images/gradle-node/Dockerfile-jdk17

10 lines
334 B
Plaintext
Raw Permalink Normal View History

2026-01-16 15:08:02 +01:00
FROM gradle:8.12-jdk17
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/*