feat: added button controls for controlling music, added presence, added color codes to bot output, added some comments into the code

fix: fixed issues with skipping a song, when there is no next sond in the queue
chore: renamed Dockerfile, updated README.md

Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
limited_dev 2023-04-26 17:48:53 +02:00
parent 7753f11e60
commit 465101f68a
24 changed files with 856 additions and 39 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM openjdk:17-jdk-slim AS build
WORKDIR /app
ADD . /app
RUN rm -rf /app/run
RUN ./gradlew shadowJar
FROM openjdk:17-jdk-slim AS run
COPY --from=build /app/build/libs/*-all.jar app.jar
CMD ["java", "-jar", "app.jar"]