generated from JeffersonLab/smoothness-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
54 lines (48 loc) · 2.08 KB
/
Dockerfile
File metadata and controls
54 lines (48 loc) · 2.08 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
42
43
44
45
46
47
48
49
50
51
52
53
54
ARG BUILD_IMAGE=gradle:9-jdk21
ARG RUN_IMAGE=jeffersonlab/wildfly:3.0.1
################## Stage 0
FROM ${BUILD_IMAGE} AS builder
ARG CUSTOM_CRT_URL
USER root
WORKDIR /
RUN if [ -z "${CUSTOM_CRT_URL}" ] ; then echo "No custom cert needed"; else \
curl -L -o /usr/local/share/ca-certificates/customcert.crt $CUSTOM_CRT_URL \
&& update-ca-certificates \
&& keytool -import -alias custom -file /usr/local/share/ca-certificates/customcert.crt -cacerts -storepass changeit -noprompt \
&& export OPTIONAL_CERT_ARG=--cert=/etc/ssl/certs/ca-certificates.crt \
; fi
COPY . /app
RUN cd /app && gradle build -x test --no-watch-fs $OPTIONAL_CERT_ARG
################## Stage 1
FROM ${RUN_IMAGE} AS runner
USER root
COPY --from=builder /app/container/app/app-setup.env /
RUN mkdir -p /home/dev/secrets
RUN chown -R dev:dev /home/dev
COPY --from=builder /app/container/app/sim.properties /home/dev/secrets
RUN /server-setup.sh /app-setup.env wildfly_start_and_wait \
&& /app-setup.sh /app-setup.env config_keycloak_client \
&& /app-setup.sh /app-setup.env config_oracle_client \
&& /server-setup.sh /app-setup.env config_email \
&& /server-setup.sh /app-setup.env wildfly_reload \
&& /server-setup.sh /app-setup.env wildfly_stop \
&& rm -rf /opt/wildfly/current/standalone/configuration/standalone_xml_history \
USER dev
COPY --from=builder /app/build/libs/* /opt/wildfly/current/standalone/deployments
ENV TZ='America/New_York'
# Used by app runtime smoothness weblib User Directory Cache
ENV KEYCLOAK_FRONTEND_SERVER_URL='http://localhost:8081/auth'
ENV KEYCLOAK_BACKEND_SERVER_URL='http://keycloak:8080/auth'
ENV KEYCLOAK_REALM='test-realm'
ENV KEYCLOAK_RESOURCE='sim'
ENV KEYCLOAK_SECRET='yHi6W2raPmLvPXoxqMA7VWbLAA2WN0eB'
# Used by container-entrypoint.sh
ENV ORACLE_DATASOURCE='sim'
ENV ORACLE_SERVER='oracle:1521'
ENV ORACLE_USER='SIM_OWNER'
ENV ORACLE_PASS='password'
ENV ORACLE_SERVICE='xepdb1'
# Used by app for path building
ENV PUPPET_SHOW_SERVER_URL='http://puppet:3000'
ENV BACKEND_SERVER_URL='http://sim:8080'
ENV FRONTEND_SERVER_URL='https://localhost:8443'