mirror of
https://github.com/dalbodeule/chibot-chzzk-bot.git
synced 2025-06-09 07:18:22 +00:00
39 lines
743 B
Docker
39 lines
743 B
Docker
# Builder Stage
|
|
FROM gradle:jdk-21-and-22-graal-jammy AS builder
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy Gradle wrapper and build scripts
|
|
COPY gradlew ./
|
|
COPY gradle ./gradle
|
|
COPY build.gradle.kts .
|
|
COPY settings.gradle.kts .
|
|
COPY gradle.properties .
|
|
|
|
# Download dependencies
|
|
RUN ./gradlew --no-daemon dependencies
|
|
|
|
# Build the application
|
|
RUN ./gradlew build
|
|
|
|
# Copy the source code
|
|
COPY src ./src
|
|
|
|
# Build the application
|
|
RUN ./gradlew nativeCompile
|
|
|
|
# Runner Stage
|
|
FROM alpine:latest AS runner
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy the native image from the builder stage
|
|
COPY --from=builder /app/chzzk_bot .
|
|
|
|
# Ensure the application binary is executable
|
|
RUN chmod +x /app/chzzk_bot
|
|
|
|
# Run the application
|
|
CMD ["./chzzk_bot"] |