Renovate
793afe08ae
All checks were successful
Build and publish "Java default JDK on Bookworm" image / Build and publish (push) Successful in 14s
Build and publish "Python 3 on Bookworm" image / Build and publish (push) Successful in 12s
Build and publish "Rust on Bookworm" image / Build and publish (push) Successful in 11s
12 lines
422 B
Docker
12 lines
422 B
Docker
FROM node:22-bookworm@sha256:816f04d578545be8f3faadaefaa0926c65e67056d9bf2864009976380c2b0713
|
|
|
|
ENV PATH="/opt/gradle/gradle-8.10/bin:$PATH"
|
|
|
|
RUN apt-get update && \
|
|
apt-get install git -y && \
|
|
apt-get install default-jdk -y && \
|
|
wget https://services.gradle.org/distributions/gradle-8.10-bin.zip && \
|
|
mkdir /opt/gradle && \
|
|
unzip -d /opt/gradle gradle-8.10-bin.zip && \
|
|
rm -rf /var/lib/apt/lists/*
|