-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
41 lines (27 loc) · 1.23 KB
/
Dockerfile
File metadata and controls
41 lines (27 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
FROM public.ecr.aws/docker/library/maven:3.9.9-amazoncorretto-23-al2023 AS build
WORKDIR /code
# Copy only the POM file first to leverage Docker cache for dependencies
COPY pom.xml .
# Create .m2 directory to avoid permission issues
RUN mkdir -p /root/.m2
# Download dependencies first (this layer will be cached)
RUN --mount=type=cache,target=/root/.m2 mvn dependency:go-offline
# Build the application
COPY src ./src
RUN --mount=type=cache,target=/root/.m2 mvn clean package -DskipTests --also-make --batch-mode
FROM build AS tests
ENV SPRING_DATASOURCE_PRIMARY_URL=jdbc:postgresql://authronom-backend-postgres:5432/test_authronom_backend
ENV SPRING_DATA_REDIS_HOST=authronom-backend-redis
RUN --mount=type=cache,target=/root/.m2 mvn test --batch-mode
FROM public.ecr.aws/docker/library/maven:3.9.9-amazoncorretto-23-al2023-slim AS development
WORKDIR /authronom-backend
# Install development dependencies
RUN yum install -y git && yum clean all && rm -rf /var/cache/yum
ENTRYPOINT []
CMD []
FROM public.ecr.aws/amazoncorretto/amazoncorretto:23-al2023 AS application
WORKDIR /authronom-backend
# Copy only the built JAR file from the build stage
COPY --from=build /code/target/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "app.jar"]