-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Migration Guide 3.2
Guillaume Smet edited this page Jun 20, 2023
·
15 revisions
Due to changes made to GraalVM/Mandrel, if you are using an extension that is relying on .so
files (such as the AWT extension), you need to add these .so
files to the native container similarly to:
...
# Copy of the .so files to the container
COPY --chown=1001:root target/*.so /work/
COPY --chown=1001:root target/*-runner /work/application
...