-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
41 lines (38 loc) · 1.74 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
# Local build and debugging commands - you might want to remove sudo if not needed
# gradle -Dspring.profiles.active=prod -Debics.outputDir=./out bootRun
# sudo docker build . -t ebics;
# sudo docker run -p 8093:8093 ebics
# sudo docker run -p 8093:8093 -v $HOME/ebics:/root/ebics ebics
# sudo docker run -p 8093:8093 -v $HOME/ebics:/root/ebics --env spring.profiles.active=prod ebics
# sudo docker run ebics -cp "ebics-cli.jar:lib/*" org.kopi.ebics.client.EbicsClient --help
# sudo docker run -it --entrypoint sh ebics
# sudo docker run -v $HOME/ebics:/root/ebics ebics -cp "ebics-cli.jar:lib/*" org.kopi.ebics.client.EbicsClient --sta -o /root/ebics/out sta.txt
FROM gradle:6-jdk11 AS build
# with local java and using sdkman
# sdk use java 11.0.23-tem && sdk use java 11.0.23-tem
# build ebics-client jar and server jars;
RUN ls -la; mkdir /app;
COPY build.gradle /app
COPY gradle.properties /app
COPY settings.gradle /app
COPY google_checks.xml /app
COPY ./src /app/src
# disable git info
ENV GENERATE_GIT_PROPERTIES="false"
WORKDIR /app
RUN gradle clean build bootJar -DGENERATE_GIT_PROPERTIES=$GENERATE_GIT_PROPERTIES
#create runtime for jars
FROM openjdk:18-jdk as runtime
RUN mkdir /app
RUN mkdir /app/lib
WORKDIR /app
COPY --from=build /app/*.jar /app/
COPY --from=build /app/lib/*.jar /app/lib/
COPY --from=build /app/build/libs/app-1.0.0.jar /app
#remove version form jar files in container and note the used version
RUN FN=`(ls app-*.jar | head -1)`; echo $FN; mv $FN ebics-service.jar; touch $FN.version
RUN FN=`(ls ebics-*.jar | head -1)`; echo $FN; mv $FN ebics-cli.jar; touch $FN.version
#see application*.yml or spring boot spring.active.profiles for port and other configs
EXPOSE 8093
ENTRYPOINT ["java"]
CMD ["-jar", "ebics-service.jar" ]