You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
Bash
46 lines
1.4 KiB
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
###########################################################
|
|
# UTILS
|
|
###########################################################
|
|
|
|
apt-get update
|
|
apt-get install --no-install-recommends -y ca-certificates net-tools libxml2-utils git curl libudev1 libxml2-utils iptables iproute2 jq
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
curl https://raw.githubusercontent.com/spring-io/concourse-java-scripts/v0.0.3/concourse-java.sh > /opt/concourse-java.sh
|
|
|
|
|
|
###########################################################
|
|
# JAVA
|
|
###########################################################
|
|
JDK_URL=$( ./get-jdk-url.sh $1 )
|
|
|
|
mkdir -p /opt/openjdk
|
|
cd /opt/openjdk
|
|
curl -L ${JDK_URL} | tar zx --strip-components=1
|
|
test -f /opt/openjdk/bin/java
|
|
test -f /opt/openjdk/bin/javac
|
|
|
|
|
|
###########################################################
|
|
# DOCKER
|
|
###########################################################
|
|
cd /
|
|
DOCKER_URL=$( ./get-docker-url.sh )
|
|
curl -L ${DOCKER_URL} | tar zx
|
|
mv /docker/* /bin/
|
|
chmod +x /bin/docker*
|
|
|
|
export ENTRYKIT_VERSION=0.4.0
|
|
curl -L https://github.com/progrium/entrykit/releases/download/v${ENTRYKIT_VERSION}/entrykit_${ENTRYKIT_VERSION}_Linux_x86_64.tgz | tar zx
|
|
chmod +x entrykit && \
|
|
mv entrykit /bin/entrykit && \
|
|
entrykit --symlink
|
|
|
|
###########################################################
|
|
# GRADLE ENTERPRISE
|
|
###########################################################
|
|
mkdir ~/.gradle
|
|
echo 'systemProp.user.name=concourse' > ~/.gradle/gradle.properties |