Fading Coder

One Final Commit for the Last Sprint

Automating SpringBoot Deployment with GitHub Actions

Dockerfile Configuration # Multi-stage build for efficiency FROM maven:3.8-jdk-11 as build-stage WORKDIR /workspace COPY pom.xml . COPY src ./src # Build with caching and skip tests RUN mvn package -DskipTests # Runtime image FROM openjdk:11-jre-slim WORKDIR /app COPY --from=build-stage /workspace/t...