feat: initial hiveops-guide service — standalone guide content API and admin SPA

This commit is contained in:
2026-06-29 15:39:17 -04:00
commit 638760e0b3
45 changed files with 1958 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM eclipse-temurin:21-jre-alpine
WORKDIR /app
RUN addgroup -g 1000 hiveiq && \
adduser -D -u 1000 -G hiveiq hiveiq
COPY target/*.jar app.jar
RUN chown -R hiveiq:hiveiq /app
USER hiveiq
EXPOSE 8099
ENTRYPOINT ["java", "-jar", "app.jar"]