update sha256 values to pass SRI checks

Based on this issue: https://github.com/docker/getting-started/issues/9 the base 64 encoded sha256 checksums as they exist break the container and result in a non working app.

These new values result in a working app on Docker Desktop CE Edge 2.2.3.0 running on Windows 10 Pro 2004.
This commit is contained in:
Chris Rivers 2020-04-19 17:15:20 -04:00 committed by GitHub
parent 3b6bac1965
commit 3d27a5759d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,10 +12,10 @@
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
<script src="js/react.production.min.js" integrity="sha256-3vo65ZXn5pfsCfGM5H55X+SmwJHBlyNHPwRmWAPgJnM=" crossorigin="anonymous"></script> <script src="js/react.production.min.js" integrity="sha256-9+vSqarg29SkRZPgHqGhak6fAnATU3fEPkN1Yw+i25s=" crossorigin="anonymous"></script>
<script src="js/react-dom.production.min.js" integrity="sha256-qVsF1ftL3vUq8RFOLwPnKimXOLo72xguDliIxeffHRc=" crossorigin="anonymous"></script> <script src="js/react-dom.production.min.js" integrity="sha256-sp8nn9AyhHakaxibzqQsIsuF/fNQ6UDhwJOMAERMsxs=" crossorigin="anonymous"></script>
<script src="js/react-bootstrap.js" integrity="sha256-6ovUv/6vh4PbrUjYfYLH5FRoBiMfWhR/manIR92XEws=" crossorigin="anonymous"></script> <script src="js/react-bootstrap.js" integrity="sha256-BYDF/Xl311qx4ajriU87g3bKXNm6Q7wfjmfDjZvOPLs=" crossorigin="anonymous"></script>
<script src="js/babel.min.js" integrity="sha256-FiZMk1zgTeujzf/+vomWZGZ9r00+xnGvOgXoj0Jo1jA=" crossorigin="anonymous"></script> <script src="js/babel.min.js" integrity="sha256-0wja2UfK4fkY4sWYgLIp9NtcZLKen7TjG98MwaHFREw=" crossorigin="anonymous"></script>
<script type="text/babel" src="js/app.js"></script> <script type="text/babel" src="js/app.js"></script>
</body> </body>
</html> </html>