229. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/30/2019 1:49:21 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

229.1 Files compared

# Location File Last Modified
1 var_web_release_4_18.zip\var_web_release_4_8_ebb0ab2774d.zip Dockerfile Fri May 10 18:55:49 2019 UTC
2 var_web_release_4_18.zip\var_web_release_4_8_ebb0ab2774d.zip Dockerfile Wed May 29 22:05:55 2019 UTC

229.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 68
Changed 1 2
Inserted 0 0
Removed 0 0

229.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

229.4 Active regular expressions

No regular expressions were active.

229.5 Comparison detail

  1   # Nginx
  2   FROM %%DTR _PREFIX%%% %DTR_ORG%% /centos7-n ginx:lates t
  3   #FROM dev/ centos7-ng inx:latest
  4  
  5   MAINTAINER  "VHA OCC  WMS Develo pment Team " https:// DNS . URL /display/B PM/
  6  
  7   RUN yum in stall -y u nzip wget
  8  
  9   RUN wget h ttps://rel eases.hash icorp.com/ envconsul/ 0.6.2/envc onsul_0.6. 2_linux_am d64.zip &&  unzip env consul_0.6 .2_linux_a md64.zip & & mv envco nsul /bin/ envconsul
  10  
  11   ADD app /v ar/www/htm l/%%CONTEX T_ROOT%%/% %CONTEXT_V ERSION%%/a pp
  12   ADD libs / var/www/ht ml/%%CONTE XT_ROOT%%/ %%CONTEXT_ VERSION%%/ libs
  13   ADD *.html  /var/www/ html/%%CON TEXT_ROOT% %/%%CONTEX T_VERSION% %/
  14   ADD *.json  /var/www/ html/%%CON TEXT_ROOT% %/%%CONTEX T_VERSION% %/
  15   ADD *.ico  /var/www/h tml/%%CONT EXT_ROOT%% /%%CONTEXT _VERSION%% /
  16  
  17   RUN mkdir  -p /var/ww w/html/%%C ONTEXT_ROO T_BETA%%;  ln -Fs /va r/www/html /%%CONTEXT _ROOT%%/%% CONTEXT_VE RSION%% /v ar/www/htm l/%%CONTEX T_ROOT_BET A%%/
  18   RUN find / var/www/ht ml -type d  -exec chm od 755 {}  ";"
  19  
  20   RUN find / var/www/ht ml -type f  -exec chm od 644 {}  ";"
  21  
  22   COPY ./ser ver-defaul t.conf /et c/nginx/de fault.d/
  23  
  24   #Run entry point whic h sets the  Eligibili ty feature  flag valu e
  25   ADD ./entr ypoint.sh  /opt/vamf/ var_web/
  26   RUN ["chmo d", "+x",  "/opt/vamf /var_web/e ntrypoint. sh"]
  27  
  28   ADD ./appl y-app-conf ig.sh /opt /vamf/var_ web/
  29   RUN ["chmo d", "+x",  "/opt/vamf /var_web/a pply-app-c onfig.sh"]
  30  
  31   EXPOSE 80
  32  
  33   ENTRYPOINT  ["/opt/va mf/var_web /entrypoin t.sh"]
  34   CMD ["ngin x", "-g",  "daemon of f;"]
  35