-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker: Add dockerbuild file for Ubuntu 22.04 (#2768)
Signed-off-by: Stewart X Addison <sxa@redhat.com> Signed-off-by: Stewart X Addison <sxa@redhat.com>
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
FROM ubuntu | ||
|
||
ARG user=jenkins | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update | ||
RUN apt-get -y install git curl ansible | ||
|
||
COPY . /ansible | ||
|
||
RUN echo "localhost ansible_connection=local" > /ansible/hosts | ||
|
||
RUN set -eux; \ | ||
cd /ansible; \ | ||
ansible-playbook -i hosts ansible/playbooks/AdoptOpenJDK_Unix_Playbook/main.yml --skip-tags="debug,hosts_file,hostname,adoptopenjdk,jenkins,nagios,superuser,docker,swap_file,crontab,nvidia_cuda_toolkit,ntp_time" | ||
|
||
RUN rm -rf /ansible | ||
|
||
RUN groupadd -g 1000 ${user} | ||
RUN useradd -c "Jenkins user" -d /home/${user} -u 1000 -g 1000 -m ${user} | ||
RUN mv /bin/uname /bin/uname.real && echo "/bin/uname.real \$@ | sed 's/aarch64/armv7l/g'" > /bin/uname && chmod 755 /bin/uname | ||
|
||
ENV \ | ||
JDK7_BOOT_DIR="/usr/lib/jvm/jdk8" \ | ||
JDK8_BOOT_DIR="/usr/lib/jvm/jdk8" \ | ||
JDK10_BOOT_DIR="/usr/lib/jvm/jdk-10" \ | ||
JDK11_BOOT_DIR="/usr/lib/jvm/jdk-11" \ | ||
JDK13_BOOT_DIR="/usr/lib/jvm/jdk-13" \ | ||
JDK14_BOOT_DIR="/usr/lib/jvm/jdk-14" \ | ||
JDKLATEST_BOOT_DIR="/usr/lib/jvm/jdk-14" \ | ||
JAVA_HOME="/usr/lib/jvm/java-1.8.0-openjdk" |