mirror of
https://github.com/dalbodeule/chibot-chzzk-bot.git
synced 2025-06-09 07:18:22 +00:00
10 lines
241 B
Docker
10 lines
241 B
Docker
# Use a base image with JDK 21 for the final image
|
|
FROM openjdk:21-jdk
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy the JAR file from the TeamCity build artifacts
|
|
COPY build/libs/chzzk_bot-*.jar app.jar
|
|
|
|
# Set the entry point
|
|
ENTRYPOINT ["java", "-jar", "app.jar"] |