Skip to content

Commit 398b0bc

Browse files
authored
fix(docker): set default shell encoding (#2871)
1 parent b98dd6c commit 398b0bc

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

utils/docker/Dockerfile.jammy

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ ARG DEBIAN_FRONTEND=noninteractive
44
ARG TZ=America/Los_Angeles
55
ARG DOCKER_IMAGE_NAME_TEMPLATE="mcr.microsoft.com/playwright/python:v%version%-jammy"
66

7+
ENV LANG=C.UTF-8
8+
ENV LC_ALL=C.UTF-8
9+
710
# === INSTALL Python ===
811

912
RUN apt-get update && \

utils/docker/Dockerfile.noble

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ ARG DEBIAN_FRONTEND=noninteractive
44
ARG TZ=America/Los_Angeles
55
ARG DOCKER_IMAGE_NAME_TEMPLATE="mcr.microsoft.com/playwright/python:v%version%-noble"
66

7+
ENV LANG=C.UTF-8
8+
ENV LC_ALL=C.UTF-8
9+
710
# === INSTALL Python ===
811

912
RUN apt-get update && \

0 commit comments

Comments
 (0)