Skip to content

Commit 1f5af1e

Browse files
committed
Docker: set LANG=C.UTF-8
This prevents warning spam from Qt 6's rcc tool.
1 parent c686089 commit 1f5af1e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# See Dockerfile.win for an explanation of some aspects of this file.
22
FROM docker.io/debian:bullseye-slim
3+
4+
# Prevents warning spam from Qt 6's rcc
5+
ENV LANG=C.UTF-8
6+
37
# OpenSSL build requires perl
48
# Qt tarball requires xz-utils
59
# Qt build requires libgl1-mesa-dev, libxkbcommon-dev, python, zlib1g-dev

Dockerfile.win

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
# is stored in the updater/.git/modules directory.
1212

1313
FROM docker.io/debian:bullseye-slim
14+
15+
# Prevents warning spam from Qt 6's rcc
16+
ENV LANG=C.UTF-8
17+
1418
RUN apt-get update && apt-get install -y \
1519
autoconf \
1620
autopoint \

0 commit comments

Comments
 (0)