mirror of
https://github.com/Duke-Syndicate/duke-bot.git
synced 2025-09-10 04:38:13 +00:00
9 lines
288 B
Docker
9 lines
288 B
Docker
FROM eclipse-temurin:17
|
|
|
|
RUN mkdir -p /opt/duke-syndicate/duke-bot
|
|
COPY target/untitled-1.0-SNAPSHOT.jar /opt/duke-syndicate/duke-bot/app.jar
|
|
COPY target/final /opt/duke-syndicate/duke-bot
|
|
|
|
WORKDIR /opt/duke-syndicate/duke-bot
|
|
|
|
CMD ["java", "-jar", "/opt/duke-syndicate/duke-bot/app.jar"] |