Updated the jdrbot to be at the same standard as potatos
Some checks failed
Production deployment / Build (push) Failing after 27s
Production deployment / Deploying (push) Has been skipped

This commit was merged in pull request #1.
This commit is contained in:
2023-09-09 23:09:20 +02:00
parent a57698bf2c
commit b98bb0a634
56 changed files with 631 additions and 737 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM openjdk:18-ea-jdk-slim-bullseye AS builder
WORKDIR /app
COPY . /app
RUN ./gradlew shadowJar
FROM openjdk:18-ea-slim-bullseye AS runner
LABEL authors="skydust"
WORKDIR /app
COPY --from=builder /app/build/libs/JdrBot-all.jar /app/JdrBot.jar
COPY Songs /app/Songs
COPY start.sh /app
CMD ["/bin/bash","./start.sh"]