From 342cb4b4de641945317d6578cc04987a34f9a77d Mon Sep 17 00:00:00 2001 From: Jay Zhang Date: Mon, 30 Sep 2024 04:12:56 +0000 Subject: [PATCH] feat: try out parallel make --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65d21e8..25b0b70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ ENV PYTHON_VERSION=3.12.6 RUN wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz && \ tar -xvf Python-${PYTHON_VERSION}.tgz && cd Python-${PYTHON_VERSION} && \ ./configure --enable-optimizations --disable-test-modules --enable-shared --with-lto --with-computed-gotos --with-system-ffi --prefix=/usr && \ - make && \ + make -j && \ make altinstall && \ rm -rf ./Python-${PYTHON_VERSION}* && \ ln -sf /usr/bin/python3.12-config /usr/bin/python3-config && \