added kotlin, wine container, modified java containers to include gradle build tool
This commit is contained in:
@ -16,5 +16,16 @@ LABEL com.github.containers.toolbox="true" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
|
||||
vendor="Miller Web Solutions"
|
||||
|
||||
# Set environment variables
|
||||
ENV GRADLE_VERSION=8.6
|
||||
ENV GRADLE_HOME=/opt/gradle
|
||||
ENV PATH="${PATH}:${GRADLE_HOME}/bin"
|
||||
|
||||
# Install .NET and related tools
|
||||
RUN dnf install java-21-openjdk java-21-openjdk-devel -y -q && dnf clean all
|
||||
|
||||
# Download and install Gradle
|
||||
RUN wget -q "https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip" -O gradle.zip && \
|
||||
unzip -q gradle.zip -d /opt && \
|
||||
mv "/opt/gradle-${GRADLE_VERSION}" "${GRADLE_HOME}" && \
|
||||
rm gradle.zip
|
||||
|
@ -16,5 +16,16 @@ LABEL com.github.containers.toolbox="true" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
|
||||
vendor="Miller Web Solutions"
|
||||
|
||||
# Set environment variables
|
||||
ENV GRADLE_VERSION=8.6
|
||||
ENV GRADLE_HOME=/opt/gradle
|
||||
ENV PATH="${PATH}:${GRADLE_HOME}/bin"
|
||||
|
||||
# Install Java 11
|
||||
RUN dnf install java-11-openjdk java-11-openjdk-devel -y -q && dnf clean all
|
||||
|
||||
# Download and install Gradle
|
||||
RUN wget -q "https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip" -O gradle.zip && \
|
||||
unzip -q gradle.zip -d /opt && \
|
||||
mv "/opt/gradle-${GRADLE_VERSION}" "${GRADLE_HOME}" && \
|
||||
rm gradle.zip
|
||||
|
@ -16,5 +16,16 @@ LABEL com.github.containers.toolbox="true" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
|
||||
vendor="Miller Web Solutions"
|
||||
|
||||
# Set environment variables
|
||||
ENV GRADLE_VERSION=8.6
|
||||
ENV GRADLE_HOME=/opt/gradle
|
||||
ENV PATH="${PATH}:${GRADLE_HOME}/bin"
|
||||
|
||||
# Install Java 17
|
||||
RUN dnf install java-17-openjdk java-17-openjdk-devel -y -q && dnf clean all
|
||||
|
||||
# Download and install Gradle
|
||||
RUN wget -q "https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-bin.zip" -O gradle.zip && \
|
||||
unzip -q gradle.zip -d /opt && \
|
||||
mv "/opt/gradle-${GRADLE_VERSION}" "${GRADLE_HOME}" && \
|
||||
rm gradle.zip
|
||||
|
Reference in New Issue
Block a user