Add some scaffolding.

This commit is contained in:
2026-05-29 12:57:56 -06:00
parent 804fae4a90
commit 6ca1117565
8 changed files with 264 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM eclipse-temurin:21-jre-alpine
WORKDIR /app
COPY target/notesvault-0.0.1-SNAPSHOT.jar app.jar
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
USER appuser
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "app.jar"]