Skip to content

Instantly share code, notes, and snippets.

View ibrohimislam's full-sized avatar
♥️
Focusing

Ibrohim Kholilul Islam ibrohimislam

♥️
Focusing
View GitHub Profile
@carlosedp
carlosedp / Dockerfile.base
Last active September 18, 2020 13:15
Build Keycloak on ARM
FROM centos:7
MAINTAINER Marek Goldmann <mgoldman@redhat.com>
# Install packages necessary to run EAP
RUN yum update -y && yum -y install xmlstarlet saxon augeas bsdtar unzip java-1.8.0-openjdk-devel && yum clean all
# Create a user and group used to launch processes
# The user ID 1000 is the default for the first "regular" user on Fedora/RHEL,
# so there is a high chance that this ID will be equal to the current user
# making it easier to use volumes (no permission issues)