File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,13 @@ RUN apt-get install -y \
2323 libncurses5-dev libreadline6-dev libsqlite3-dev libssl-dev \
2424 lzma lzma-dev tk-dev uuid-dev zlib1g-dev libmpdec-dev libzstd-dev
2525
26+
2627# Clone CPython repository at the 3.13 branch
2728RUN git clone --depth 1 --branch 3.13 https://github.com/python/cpython.git /tmp/cpython
2829
29- WORKDIR /tmp/cpython
3030
3131# Configure, build, and install Python 3.13 with the GIL disabled
32+ WORKDIR /tmp/cpython
3233RUN ./configure \
3334 --prefix=/opt/python3 \
3435 --disable-gil \
@@ -47,6 +48,7 @@ RUN rm -rf /tmp/cpython
4748# Set the PATH to include custom Python build
4849ENV PATH="/opt/python3/bin:${PATH}"
4950
51+
5052# Install some Python runtime dependencies
5153RUN apt-get install -y \
5254 libnuma-dev && \
You can’t perform that action at this time.
0 commit comments