9 lines
268 B
Bash
9 lines
268 B
Bash
|
cd /tmp
|
||
|
|
||
|
apt-get update &&
|
||
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||
|
openssh-server openssh-client openjdk-11-jdk openjdk-11-jre \
|
||
|
gcc make autoconf automake libtool vim &&
|
||
|
useradd -m -s /bin/bash jenkins &&
|
||
|
mkdir -p /var/run/sshd
|