File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ ENV PATH /usr/local/bin:$PATH
77# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
88ENV LANG C.UTF-8
99
10+ # runtime dependencies
11+ RUN apt-get update && apt-get install -y --no-install-recommends \
12+ tcl \
13+ tk \
14+ && rm -rf /var/lib/apt/lists/*
15+
1016ENV PYPY_VERSION 5.4.0
1117
1218# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ ENV PATH /usr/local/bin:$PATH
77# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
88ENV LANG C.UTF-8
99
10+ # runtime dependencies
11+ RUN apt-get update && apt-get install -y --no-install-recommends \
12+ tcl \
13+ tk \
14+ && rm -rf /var/lib/apt/lists/*
15+
1016ENV PYPY_VERSION 5.2.0-alpha1
1117
1218# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
You can’t perform that action at this time.
0 commit comments