Skip to content

Commit 59784ef

Browse files
committed
docker: Formatting
1 parent 95a7e31 commit 59784ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/Dockerfile.nogil

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
2728
RUN 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
3233
RUN ./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
4849
ENV PATH="/opt/python3/bin:${PATH}"
4950

51+
5052
# Install some Python runtime dependencies
5153
RUN apt-get install -y \
5254
libnuma-dev && \

0 commit comments

Comments
 (0)