You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
部分应用部署在 Windows 服务器上,为了提供更佳的兼容性需要测试 Windows 服务器上的部署的 Tomcat 内存马注入,准备尝试基于 mcr.microsoft.com/windows/servercore:ltsc2019 构建 Tomcat 镜像
相关资料
Please list some useful links
From Grok3
# Use Windows Server Core LTSC 2019 as the base imageFROM mcr.microsoft.com/windows/servercore:ltsc2019
# Set the working directoryWORKDIR /app
# Download and install JDK 8 (example using a pre-downloaded zip file)# Replace the URL with the actual JDK 8 download link or copy it locallyADD https://example.com/jdk-8u351-windows-x64.zip /app/jdk.zip
RUN powershell -Command "Expand-Archive -Path jdk.zip -DestinationPath C:\jdk" && \
del jdk.zip
# Set JAVA_HOME environment variableENV JAVA_HOME C:\\jdk\\jdk1.8.0_351
RUN setx /M PATH "%PATH%;%JAVA_HOME%\\bin"# Download and install Tomcat 8ADD https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.85/bin/apache-tomcat-8.5.85.zip /app/tomcat.zip
RUN powershell -Command "Expand-Archive -Path tomcat.zip -DestinationPath C:\tomcat" && \
del tomcat.zip
# Expose the default Tomcat portEXPOSE 8080
# Set the working directory to Tomcat's bin folderWORKDIR C:\\tomcat\\apache-tomcat-8.5.85\\bin
# Start Tomcat when the container runsCMD ["cmd.exe", "/C", "startup.bat"]
The text was updated successfully, but these errors were encountered:
用例详情
部分应用部署在 Windows 服务器上,为了提供更佳的兼容性需要测试 Windows 服务器上的部署的 Tomcat 内存马注入,准备尝试基于 mcr.microsoft.com/windows/servercore:ltsc2019 构建 Tomcat 镜像
相关资料
From Grok3
The text was updated successfully, but these errors were encountered: