fix: update Dockerfile to run tests during build and adjust TodoController request mapping

This commit is contained in:
almazlar
2026-02-22 13:13:15 +03:00
parent fda1f39901
commit 854a0bace8
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ FROM maven:3.9.12-eclipse-temurin-25 AS build
WORKDIR /app
COPY pom.xml .
COPY src ./src
RUN mvn clean package -DskipTests
RUN mvn clean package
# Run stage
FROM eclipse-temurin:25-jre