Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

experiment with kernel32.dll #652

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions 23/jdk/windows/nanoserver-ltsc2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ USER ContainerAdministrator
RUN echo Updating PATH: %JAVA_HOME%\bin;%PATH% \
&& setx /M PATH %JAVA_HOME%\bin;%PATH% \
&& echo Complete.
# Copy kernel32.dll from C:\Windows\System32\forwarders to C:\Windows\System32
RUN copy C:\Windows\System32\forwarders\kernel32.dll C:\Windows\System32\kernel32.dll
RUN copy C:\Windows\System32\forwarders\shell32.dll C:\Windows\System32\shell32.dll
RUN copy C:\Windows\System32\forwarders\advapi32.dll C:\Windows\System32\advapi32.dll
USER ContainerUser

COPY --from=eclipse-temurin:23_37-jdk-windowsservercore-ltsc2022 $JAVA_HOME $JAVA_HOME
Expand Down
Loading