From a78cfeabba2c054d2291cb2b13ace1452bd6692e Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 24 Jun 2024 15:47:12 +0100 Subject: [PATCH] ci --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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