ci
Some checks failed
deploy / deploy (push) Failing after 9s

This commit is contained in:
Lee
2024-04-06 05:55:48 +01:00
parent 0819b228ba
commit 725fe734c3
4 changed files with 31 additions and 1 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM fascinated/docker-images:java_17
RUN apt-get update && apt-get install -y \
maven \
&& rm -rf /var/lib/apt/lists/*
RUN mvn clean package
CMD ["java", "-jar", "target/Minecraft-Helper-1.0-SNAPSHOT.jar"]