You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
#!/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.2/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 / |
|
curl -L https://download.docker.com/linux/static/stable/x86_64/docker-19.03.2.tgz | 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
|
|
|