diff --git a/Dockerfile b/Dockerfile index c60bcec..a3fcbe1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ FROM maven:3.9.6-eclipse-temurin-17-alpine AS builder # Set the working directory WORKDIR /home/container -# Copy the current directory contents into the container at /home/container -COPY work . +# Copy the source code +COPY . . # Build the jar RUN mvn package -q -Dmaven.test.skip -DskipTests -T2C