|
|
@ -2,9 +2,10 @@
|
|
|
|
FROM ubuntu:latest
|
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
|
|
|
|
RUN apt update &&\
|
|
|
|
RUN apt update &&\
|
|
|
|
apt install openjdk-11-jdk openssh-client wget unzip -y &&\
|
|
|
|
apt install openjdk-11-jdk openssh-client wget unzip curl -y &&\
|
|
|
|
wget https://services.gradle.org/distributions/gradle-7.5.1-bin.zip &&\
|
|
|
|
wget https://services.gradle.org/distributions/gradle-7.5.1-bin.zip &&\
|
|
|
|
mkdir /opt/gradle &&\
|
|
|
|
mkdir /opt/gradle &&\
|
|
|
|
unzip -d /opt/gradle gradle-7.5.1-bin.zip &&\
|
|
|
|
unzip -d /opt/gradle gradle-7.5.1-bin.zip &&\
|
|
|
|
export GRADLE_HOME=/opt/gradle/gradle-7.5.1
|
|
|
|
export GRADLE_HOME=/opt/gradle/gradle-7.5.1 && \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|