A working service for editing, querying, login and authentication of users. publishes events to kafka

This commit is contained in:
beno
2026-03-16 10:47:01 +01:00
commit 083d0445cf
31 changed files with 1570 additions and 0 deletions

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM amazoncorretto:17
COPY build/libs/BUFUS_USERS-0.0.1-SNAPSHOT.jar bufus_users.jar
ENTRYPOINT ["java","-jar","/bufus_users.jar"]