- Complete JAX-WS Hello World implementation - Docker and Docker Compose support for easy deployment - Python test scripts for service validation - Comprehensive README with setup instructions for Windows and Linux - Maven configuration with JAX-WS dependencies 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
843 B
Docker
36 lines
843 B
Docker
# Multi-stage Dockerfile for JAX-WS Hello World Service
|
|
|
|
# Stage 1: Build the application
|
|
FROM maven:3.8.6-openjdk-8 AS builder
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy pom.xml and download dependencies (for better caching)
|
|
COPY pom.xml .
|
|
RUN mvn dependency:go-offline -B
|
|
|
|
# Copy source code
|
|
COPY src ./src
|
|
|
|
# Build the application
|
|
RUN mvn clean package -DskipTests
|
|
|
|
# Stage 2: Run the application
|
|
FROM tomcat:9.0-jdk8
|
|
|
|
# Remove default Tomcat applications
|
|
RUN rm -rf /usr/local/tomcat/webapps/*
|
|
|
|
# Copy the WAR file from builder stage
|
|
COPY --from=builder /app/target/jaxws-hello-world.war /usr/local/tomcat/webapps/jaxws-hello-world.war
|
|
|
|
# Copy Tomcat configuration (optional - for manager access)
|
|
COPY tomcat-users.xml /usr/local/tomcat/conf/tomcat-users.xml
|
|
|
|
# Expose Tomcat port
|
|
EXPOSE 8080
|
|
|
|
# Start Tomcat
|
|
CMD ["catalina.sh", "run"]
|