feat(Tracer Bullet)

This commit is contained in:
2025-08-11 23:47:05 +02:00
parent 582678e226
commit a50b1b3822
43 changed files with 1665 additions and 292 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM openjdk:17-jre-slim
# Set working directory
WORKDIR /app
# Copy the gateway JAR file
COPY infrastructure/gateway/build/libs/*.jar app.jar
# Expose port
EXPOSE 8080
# Add health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=30s --retries=3 \
CMD curl -f http://localhost:8080/actuator/health || exit 1
# Run the application
ENTRYPOINT ["java", "-jar", "app.jar"]