-
Notifications
You must be signed in to change notification settings - Fork 24
/
Dockerfile
44 lines (33 loc) · 1.36 KB
/
Dockerfile
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
42
43
44
# This Dockerfile leverages multi-stage builds.
# See https://docs.docker.com/develop/develop-images/multistage-build/
# STAGE:
# Fetch summon
FROM alpine as summon
RUN apk add --no-cache curl bash
# Install summon and summon-conjur
RUN curl -sSL https://raw.githubusercontent.com/cyberark/summon/main/install.sh \
| env TMPDIR=$(mktemp -d) bash && \
curl -sSL https://raw.githubusercontent.com/cyberark/summon-conjur/main/install.sh \
| env TMPDIR=$(mktemp -d) bash
# STAGE:
# The 'maven' base is used to package the application
FROM maven:3.9.6-amazoncorretto-21-debian as maven
WORKDIR /app
# To make best use of Docker caching this section only copies
# pom.xml and uses it to install all the dependencies required
# to package the application in the next section
COPY ./pom.xml ./pom.xml
RUN mvn verify clean --fail-never
# copy the source and package the application
COPY ./src ./src
RUN mvn package && cp target/petstore-*.jar app.jar
# STAGE:
# This base is used for the final image
# It extracts the packaged application from the previous stage
# and builds the final image
FROM eclipse-temurin:21-jre
LABEL org.opencontainers.image.authors="CyberArk"
COPY --from=summon /usr/local/lib/summon /usr/local/lib/summon
COPY --from=summon /usr/local/bin/summon /usr/local/bin/summon
COPY --from=maven /app/app.jar /app.jar
ENTRYPOINT [ "java", "-jar", "/app.jar"]