1FROM centos:7
2
3# TODO: ncurses-devel results in a dependency on a libncursesw.so.5 (from
4# _curses.cpython-39-x86_64-linux-gnu.so).
5# TODO: There is no readline module, so the python3 REPL has no line editing.
6
7RUN yum -y update && \
8  yum -y install \
9  autoconf \
10  automake \
11  bzip2 \
12  bzip2-devel \
13  gcc \
14  git \
15  libtool \
16  make \
17  ncurses-devel \
18  python3 \
19  zlib-devel \
20