Update Dockerfile - run emulator in UTF-8 mode

This commit is contained in:
TheOleg 2021-01-20 18:11:16 -05:00
parent 55aa890268
commit a9b73d23d0
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ FROM java:8 AS runner
COPY --from=builder /target/Habbo.jar /
# Save the script to wait for the database, among running the Arcturus Emulator
RUN echo "#!/bin/bash \n java -jar /Habbo.jar" > /entrypoint.sh
RUN echo "#!/bin/bash \n java -Dfile.encoding=UTF-8 -jar /Habbo.jar" > /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Run the Emulator with Java