File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
exist-docker/src/main/resources-filtered Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ RUN apt-get update && apt-get -y dist-upgrade
26
26
RUN apt-get install -y openjdk-17-jre-headless
27
27
RUN apt-get install -y expat fontconfig # Install tools required by FOP
28
28
29
- FROM gcr.io/distroless/java17
29
+ FROM gcr.io/distroless/java17:latest
30
30
31
31
# Copy over dependencies for Apache FOP, missing from GCR's JRE
32
32
COPY --from=debian-slim /usr/lib/x86_64-linux-gnu/libfreetype.so.6 /usr/lib/x86_64-linux-gnu/libfreetype.so.6
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ docker run -m 600m …
297
297
```
298
298
299
299
Lastly, this image uses a new garbage collection mechanism
300
- [ The Z Garbage Collector (https://docs.oracle.com/en/java/javase/11/gctuning/z-garbage-collector1.html )] ` -XX:+UseZGC `
300
+ [ The Z Garbage Collector] ( https://docs.oracle.com/en/java/javase/11/gctuning/z-garbage-collector1.html ) ` -XX:+UseZGC `
301
301
and [ string deduplication] ( http://openjdk.java.net/jeps/192 ) ` -XX:+UseStringDeduplication ` to improve performance.
302
302
303
303
To disable or further tweak these features edit the relevant parts of the ` Dockerfile ` , or when running the image.
You can’t perform that action at this time.
0 commit comments