mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
- New authority/kdc Spring Boot microservice (Dockerfile, HealthController, application.properties) - Updated authority/pom.xml, k8s/registry/deployment.yaml, knoe/ui/screens, conf, etc/ init scripts, modes/k3s/knoe-db/.version, scan artifacts - Added project images (knoe.png, architecture diagram, screenshot) Co-authored-by: Junie <junie@jetbrains.com>
28 lines
504 B
Docker
28 lines
504 B
Docker
FROM ubuntu:24.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
acl \
|
|
adcli \
|
|
attr \
|
|
ca-certificates \
|
|
curl \
|
|
dnsutils \
|
|
krb5-admin-server \
|
|
krb5-config \
|
|
krb5-kdc \
|
|
krb5-user \
|
|
libnss-winbind \
|
|
libpam-krb5 \
|
|
libpam-winbind \
|
|
python3-samba \
|
|
realmd \
|
|
samba \
|
|
samba-common-bin \
|
|
samba-dsdb-modules \
|
|
samba-vfs-modules \
|
|
winbind \
|
|
&& rm -rf /var/lib/apt/lists/*
|