We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35522ad commit e61e8d0Copy full SHA for e61e8d0
docker/Dockerfile.nogil
@@ -22,7 +22,12 @@ RUN git clone --depth 1 --branch 3.13 https://github.com/python/cpython.git /tmp
22
WORKDIR /tmp/cpython
23
24
# Configure, build, and install Python 3.13 with the GIL disabled
25
-RUN ./configure --prefix=/opt/python3 --disable-gil --enable-optimizations
+RUN ./configure \
26
+ --prefix=/opt/python3 \
27
+ --disable-gil \
28
+ --enable-optimizations \
29
+ --enable-shared \
30
+ --enable-multilib
31
RUN make -j$(nproc)
32
RUN make install
33
0 commit comments