From dac8d6ad25f7b191db2d68ca18c11986fa42125c Mon Sep 17 00:00:00 2001 From: zontreck Date: Thu, 12 Sep 2024 22:33:17 -0700 Subject: [PATCH] Change file encoding to UTF-8 --- FirestormLinux/Dockerfile | 2 +- LinuxGeneralCompiler/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FirestormLinux/Dockerfile b/FirestormLinux/Dockerfile index 86e2614..5d2b9a4 100644 --- a/FirestormLinux/Dockerfile +++ b/FirestormLinux/Dockerfile @@ -39,4 +39,4 @@ WORKDIR / RUN curl -sO https://ci.zontreck.com/jnlpJars/agent.jar -ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "LinuxFS", "-workDir", "/builder" ] +ENTRYPOINT [ "java", "-Dfile.encoding=UTF-8", "-Dsun.jnu.encoding=UTF-8", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "LinuxFS", "-workDir", "/builder" ] diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index 7dc59e3..0bf7962 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -16,4 +16,4 @@ WORKDIR /root/.gradle ADD ./gradle.properties ./ WORKDIR / -ENTRYPOINT [ "java", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "Linux", "-workDir", "/builder" ] +ENTRYPOINT [ "java", "-Dfile.encoding=UTF-8", "-Dsun.jnu.encoding=UTF-8", "-jar", "/agent.jar", "-url", "https://ci.zontreck.com", "-secret", "@/agent.secret", "-name", "Linux", "-workDir", "/builder" ]