Commit 4da414c
committed
Fix Docker file
* Removed `applicationinsights.json` from `.gitignore` as that
prevents docker from finding that file, as docker reads and respects
`.gitignore`.
* Fixed file permissions:
- Only script files should be executable.
- No file should be writable.
- Files should be readable.
* Fixed `HEALTHCHECK`. The Ubuntu base image used by our
`eclipse-temurin` Docker base image, does not provide `curl` or
any other alterntives. Instead of installing `curl` and polluting
the image with APT cache stuff, a simple custom Java based applet is
used to check the status. This allows us to in the future to also
switch to completely distroless base images.1 parent df5f46d commit 4da414c
2 files changed
+9
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
27 | 30 | | |
28 | 31 | | |
29 | 32 | | |
30 | | - | |
31 | | - | |
| 33 | + | |
| 34 | + | |
32 | 35 | | |
33 | 36 | | |
34 | 37 | | |
| |||
37 | 40 | | |
38 | 41 | | |
39 | 42 | | |
40 | | - | |
| 43 | + | |
0 commit comments