New focus

This commit is contained in:
Andros Fenollosa 2024-05-28 22:47:18 +02:00
parent 140570614e
commit 0354a36cef
2 changed files with 2 additions and 7 deletions

View File

@ -11,8 +11,4 @@ RUN dpkg-reconfigure -f noninteractive tzdata
RUN apt update -y
RUN apt install -y make
# Make jar
COPY . .
RUN lein uberjar
Entrypoint ["bash", "-c", "while :; do java -jar target/uberjar/isahn-1.0.2-standalone.jar; sleep 1; done"]
Entrypoint ["lein", "run"]

View File

@ -1,8 +1,7 @@
.DEFAULT_GOAL := build
run:
lein uberjar
while :; do java -jar target/uberjar/isahn-1.0.2-standalone.jar; sleep 1; done
while :; do lein run; sleep 1; done
build:
make check