mirror of
https://github.com/YuWanTingbb/unofficial-gpt4.git
synced 2025-10-14 14:11:23 +00:00
30 lines
686 B
Docker
30 lines
686 B
Docker
# Using Oracle GraalVM for JDK 17
|
|
FROM observabilitystack/graalvm-maven-builder:21.0.1-ol9 AS builder
|
|
|
|
# Set the working directory to /home/app
|
|
WORKDIR /build
|
|
|
|
# Copy the source code into the image for building
|
|
COPY . /build
|
|
|
|
# Add execute permission to mvnw script
|
|
RUN chmod +x mvnw
|
|
|
|
# Build
|
|
RUN ./mvnw --no-transfer-progress native:compile -Pnative
|
|
|
|
# Use a lightweight Linux base image with just enough runtime dependencies
|
|
FROM alpine:latest
|
|
|
|
# Expose port 8080 for the application
|
|
EXPOSE 8080
|
|
|
|
# Copy the native executable into the container
|
|
COPY --from=builder /build/target/gpt-4-copilot app
|
|
|
|
RUN chmod +x /app
|
|
|
|
# Set the entry point to run your application
|
|
ENTRYPOINT ["/app"]
|
|
|