implement authentication and user management features

This commit is contained in:
Vincent Guillet
2025-09-24 11:29:48 +02:00
parent f2b4f9d3e6
commit 3d2b3f7324
26 changed files with 1537 additions and 0 deletions

21
api/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM maven:3.9.6-eclipse-temurin-21 AS build
WORKDIR /app
COPY pom.xml .
COPY src ./src
RUN mvn clean package -DskipTests
FROM eclipse-temurin:21-jre
WORKDIR /app
COPY --from=build /app/target/*.jar app.jar
COPY .env .env
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "app.jar"]