mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 18:16:47 +00:00
7 lines
238 B
Plaintext
7 lines
238 B
Plaintext
FROM jetty:9.4.50-jre11-alpine
|
|
|
|
# Copy build artifact (.war file) into jetty from 'maven' stage.
|
|
COPY /obp-api/target/obp-api-1.*.war /var/lib/jetty/webapps/ROOT.war
|
|
|
|
# Run jetty in production mode
|
|
ENV JAVA_OPTIONS='-Drun.mode=production' |