With Audio and Screen Sharing Enabled
Add the i386 architecture to the list of dpkg architectures :
sudo dpkg --add-architecture i386
| FROM php:7.1-fpm-alpine | |
| RUN apk add --update \ | |
| autoconf \ | |
| g++ \ | |
| libtool \ | |
| make \ | |
| && docker-php-ext-install mbstring \ | |
| && docker-php-ext-install mysqli \ |
| require 'optparse' | |
| require 'yaml' | |
| require 'base64' | |
| options = { | |
| config_path: File.join(ENV['HOME'], '.kube', 'config'), | |
| write_dir: File.join(ENV['HOME'], '.kube') | |
| } | |
| OptionParser.new do |opts| |
| # RS256 | |
| # private key | |
| openssl genrsa -out rs256-4096-private.rsa 4096 | |
| # public key | |
| openssl rsa -in rs256-4096-private.rsa -pubout > rs256-4096-public.pem | |
| # ES512 | |
| # private key | |
| openssl ecparam -genkey -name secp521r1 -noout -out ecdsa-p521-private.pem | |
| # public key |
| <div class="alert"> | |
| {{ $slot }} | |
| </div> |
| import hudson.util.RemotingDiagnostics; | |
| def node = 'node-name' | |
| def command = 'uname -a' | |
| println RemotingDiagnostics.executeGroovy(""" | |
| def p = '$command'.execute() | |
| p.waitFor() | |
| println p.in.text |
| # NOTE: This is a hack and will downgrade the tzdata package. | |
| # Better alternatives: | |
| # - Use Azul Zulu build of OpenJDK 6 (https://www.azul.com/downloads/zulu/zulu-linux/ - make sure you enable the box labeled Older Zulu versions) | |
| # - Install Java 6 directly from Oracle and install it manually (https://gist.github.com/bmaupin/16855ce1b2484c459f41ad836a7d3f2f) | |
| wget http://launchpadlibrarian.net/235298493/openjdk-6-jdk_6b38-1.13.10-1_amd64.deb | |
| wget http://launchpadlibrarian.net/235298496/openjdk-6-jre_6b38-1.13.10-1_amd64.deb | |
| wget http://launchpadlibrarian.net/235298494/openjdk-6-jre-headless_6b38-1.13.10-1_amd64.deb | |
| wget http://launchpadlibrarian.net/235298487/openjdk-6-jre-lib_6b38-1.13.10-1_all.deb | |
| wget http://launchpadlibrarian.net/250277191/tzdata_2016c-0ubuntu1_all.deb |
$ uname -r