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
7
7
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
8
8
ENV LANG C.UTF-8
9
9
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
+
10
16
ENV PYPY_VERSION 5.4.0
11
17
12
18
# 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
7
7
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
8
8
ENV LANG C.UTF-8
9
9
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
+
10
16
ENV PYPY_VERSION 5.2.0-alpha1
11
17
12
18
# 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