Botendo/Dockerfile
limited_dev 465101f68a 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>
2023-04-26 17:48:53 +02:00

15 lines
225 B
Docker

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"]