Skip to content

Commit d43d3fc

Browse files
committed
Removing LANG env var from 3.10-rc and templates
1 parent edb62f4 commit d43d3fc

File tree

6 files changed

+0
-24
lines changed

6 files changed

+0
-24
lines changed

3.10-rc/alpine3.12/Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ FROM alpine:3.12
99
# ensure local python is preferred over distribution python
1010
ENV PATH /usr/local/bin:$PATH
1111

12-
# http://bugs.python.org/issue19846
13-
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
14-
ENV LANG C.UTF-8
15-
1612
# runtime dependencies
1713
RUN set -eux; \
1814
apk add --no-cache \

3.10-rc/buster/Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ FROM buildpack-deps:buster
99
# ensure local python is preferred over distribution python
1010
ENV PATH /usr/local/bin:$PATH
1111

12-
# http://bugs.python.org/issue19846
13-
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
14-
ENV LANG C.UTF-8
15-
1612
# extra dependencies (over what buildpack-deps already includes)
1713
RUN apt-get update && apt-get install -y --no-install-recommends \
1814
libbluetooth-dev \

3.10-rc/buster/slim/Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ FROM debian:buster-slim
99
# ensure local python is preferred over distribution python
1010
ENV PATH /usr/local/bin:$PATH
1111

12-
# http://bugs.python.org/issue19846
13-
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
14-
ENV LANG C.UTF-8
15-
1612
# runtime dependencies
1713
RUN set -eux; \
1814
apt-get update; \

Dockerfile-alpine.template

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ FROM alpine:%%PLACEHOLDER%%
33
# ensure local python is preferred over distribution python
44
ENV PATH /usr/local/bin:$PATH
55

6-
# http://bugs.python.org/issue19846
7-
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
8-
ENV LANG C.UTF-8
9-
106
# runtime dependencies
117
RUN set -eux; \
128
apk add --no-cache \

Dockerfile-debian.template

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ FROM buildpack-deps:%%PLACEHOLDER%%
33
# ensure local python is preferred over distribution python
44
ENV PATH /usr/local/bin:$PATH
55

6-
# http://bugs.python.org/issue19846
7-
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
8-
ENV LANG C.UTF-8
9-
106
# extra dependencies (over what buildpack-deps already includes)
117
RUN apt-get update && apt-get install -y --no-install-recommends \
128
libbluetooth-dev \

Dockerfile-slim.template

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ FROM debian:%%PLACEHOLDER%%
33
# ensure local python is preferred over distribution python
44
ENV PATH /usr/local/bin:$PATH
55

6-
# http://bugs.python.org/issue19846
7-
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
8-
ENV LANG C.UTF-8
9-
106
# runtime dependencies
117
RUN set -eux; \
128
apt-get update; \

0 commit comments

Comments
 (0)