Skip to content

Commit

Permalink
set LANG=C.UTF-8 in fedora dockerfile
Browse files Browse the repository at this point in the history
Fixes errors like:

lcm/spy/Spy.java:41: error: unmappable character (0xE2) for encoding US-ASCII
            String spacer = "  ???  ";

when compiling on fedora
  • Loading branch information
nosracd committed Mar 16, 2023
1 parent c1ca16a commit 2e59b9a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ RUN dnf install -y \
python3-devel

WORKDIR /work

# Necessary to encode certain characters when compiling the Java code.
ENV LANG=C.UTF-8

0 comments on commit 2e59b9a

Please sign in to comment.