| FROM jetty:9.4.9-alpine |
| |
| EXPOSE 8080 |
| EXPOSE 8443 |
| EXPOSE 5005 |
| |
| ARG ARTIFACT_VERSION |
| |
| ENV LOGBACK_FILE_DIR /etc/onap/activity-spec/be/ |
| |
| # See https://hub.docker.com/_/jetty/ |
| ARG WEBAPPS_DIR=${JETTY_BASE}/webapps/ |
| |
| COPY activity-spec-api-docs/target/activity-spec-api-docs-${ARTIFACT_VERSION}.war ${WEBAPPS_DIR} |
| |
| COPY activity-spec-war/target/activity-spec-war-${ARTIFACT_VERSION}.war ${WEBAPPS_DIR} |
| |
| COPY activity-spec-assembly/configuration.yaml . |
| COPY activity-spec-assembly/start.sh . |
| COPY activity-spec-assembly/logback.xml ${LOGBACK_FILE_DIR} |
| |
| USER root |
| |
| RUN chown jetty:jetty start.sh |
| RUN chmod 744 start.sh |
| |
| ENTRYPOINT ["./start.sh"] |