setup.sh 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #!/bin/bash
  2. set -ex
  3. ###########################################################
  4. # UTILS
  5. ###########################################################
  6. export DEBIAN_FRONTEND=noninteractive
  7. apt-get update
  8. apt-get install --no-install-recommends -y tzdata ca-certificates net-tools libxml2-utils git curl libudev1 libxml2-utils iptables iproute2 jq
  9. ln -fs /usr/share/zoneinfo/UTC /etc/localtime
  10. dpkg-reconfigure --frontend noninteractive tzdata
  11. rm -rf /var/lib/apt/lists/*
  12. curl https://raw.githubusercontent.com/spring-io/concourse-java-scripts/v0.0.3/concourse-java.sh > /opt/concourse-java.sh
  13. ###########################################################
  14. # JAVA
  15. ###########################################################
  16. JDK_URL=$( ./get-jdk-url.sh $1 )
  17. mkdir -p /opt/openjdk
  18. cd /opt/openjdk
  19. curl -L ${JDK_URL} | tar zx --strip-components=1
  20. test -f /opt/openjdk/bin/java
  21. test -f /opt/openjdk/bin/javac
  22. ###########################################################
  23. # DOCKER
  24. ###########################################################
  25. cd /
  26. DOCKER_URL=$( ./get-docker-url.sh )
  27. curl -L ${DOCKER_URL} | tar zx
  28. mv /docker/* /bin/
  29. chmod +x /bin/docker*
  30. export ENTRYKIT_VERSION=0.4.0
  31. curl -L https://github.com/progrium/entrykit/releases/download/v${ENTRYKIT_VERSION}/entrykit_${ENTRYKIT_VERSION}_Linux_x86_64.tgz | tar zx
  32. chmod +x entrykit && \
  33. mv entrykit /bin/entrykit && \
  34. entrykit --symlink
  35. ###########################################################
  36. # GRADLE ENTERPRISE
  37. ###########################################################
  38. mkdir ~/.gradle
  39. echo 'systemProp.user.name=concourse' > ~/.gradle/gradle.properties