Skip to content

Commit

Permalink
make -j $(expr $(nproc) / 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesomer committed Jan 27, 2025
1 parent 8db7e70 commit 1080786
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN git clone --depth=1 https://github.com/mikebrady/alac
WORKDIR /alac
RUN autoreconf -i
RUN ./configure
RUN make
RUN make -j $(expr $(nproc) / 2)
RUN make install
WORKDIR /
##### ALAC END #####
Expand All @@ -44,7 +44,7 @@ RUN git clone --depth=1 -b "$NQPTP_BRANCH" https://github.com/mikebrady/nqptp
WORKDIR /nqptp
RUN autoreconf -i
RUN ./configure
RUN make
RUN make -j $(expr $(nproc) / 2)
WORKDIR /
##### NQPTP END #####

Expand All @@ -62,7 +62,7 @@ RUN CFLAGS="-O3" CXXFLAGS="-O3" ../configure --sysconfdir=/etc --with-alsa --wit
--with-airplay-2 --with-metadata --with-dummy --with-pipe --with-dbus-interface \
--with-stdout --with-mpris-interface --with-mqtt-client \
--with-apple-alac --with-convolution --with-pw
RUN make -j $(nproc)
RUN make -j $(expr $(nproc) / 2)
RUN DESTDIR=install make install
WORKDIR /
##### SPS END #####
Expand Down

0 comments on commit 1080786

Please sign in to comment.