mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 15:26:23 +00:00
61 lines
1.6 KiB
Docker
61 lines
1.6 KiB
Docker
# Multi-stage build for Spring Boot application
|
|
FROM eclipse-temurin:21-jre AS builder
|
|
WORKDIR /app
|
|
COPY build/libs/*.jar app.jar
|
|
RUN java -Djarmode=layertools -jar app.jar extract
|
|
|
|
FROM eclipse-temurin:21-jre
|
|
WORKDIR /app
|
|
|
|
# Install Playwright essential dependencies only
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
wget \
|
|
libnss3 \
|
|
libnspr4 \
|
|
libatk1.0-0 \
|
|
libatk-bridge2.0-0 \
|
|
libcups2 \
|
|
libdrm2 \
|
|
libdbus-1-3 \
|
|
libxkbcommon0 \
|
|
libxcomposite1 \
|
|
libxdamage1 \
|
|
libxfixes3 \
|
|
libxrandr2 \
|
|
libgbm1 \
|
|
libasound2t64 \
|
|
libpango-1.0-0 \
|
|
libcairo2 \
|
|
libatspi2.0-0 \
|
|
libxshmfence1 \
|
|
fonts-liberation \
|
|
libappindicator3-1 \
|
|
xdg-utils \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Create browser installation directory with proper permissions
|
|
RUN mkdir -p /app/playwright && chmod 777 /app/playwright
|
|
|
|
# Copy layers from builder
|
|
COPY --from=builder /app/dependencies/ ./
|
|
COPY --from=builder /app/spring-boot-loader/ ./
|
|
COPY --from=builder /app/snapshot-dependencies/ ./
|
|
COPY --from=builder /app/application/ ./
|
|
|
|
# Set Playwright browsers path
|
|
ENV PLAYWRIGHT_BROWSERS_PATH=/app/playwright
|
|
|
|
# Create non-root user
|
|
RUN groupadd -r spring && useradd -r -g spring spring
|
|
|
|
# Change ownership to spring user
|
|
RUN chown -R spring:spring /app
|
|
|
|
USER spring:spring
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=60s --retries=3 \
|
|
CMD wget --no-verbose --tries=1 --spider http://localhost:8085/distribution/actuator/health || exit 1
|
|
|
|
ENTRYPOINT ["java", "org.springframework.boot.loader.launch.JarLauncher"]
|