From 205ae144c05f2f30d41627925b8ee30b01544e48 Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 8 Apr 2024 05:03:41 +0100 Subject: [PATCH] ci --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index aa71c5e..7c2cad8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,21 @@ FROM eclipse-temurin:17.0.10_7-jdk-focal +# Install maven ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y maven +# Set the working directory +WORKDIR /home/container + +# Copy the current directory contents into the container at /home/container COPY . . +# Build the jar RUN mvn package -q +# Make port 80 available to the world outside this container EXPOSE 80 ENV PORT=80 +# Run the jar file CMD ["java", "-jar", "target/Minecraft-Helper-1.0-SNAPSHOT.jar"] \ No newline at end of file