Skip to content

Commit

Permalink
fix(docker): fix incorrect # of cpu cores parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
y4cer committed Jul 13, 2023
1 parent bb38aea commit c1f956c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN cd /tmp && \
RUN ls && pwd

RUN export NUM_JOBS=$([ $(uname) = 'Linux' ] && \
lscpu -p | egrep -v '^#' | wc -l) \
lscpu -p | egrep -v '^#' | wc -l) && \
cd /tmp/grpc && \
mkdir -p cmake/build && \
cd cmake/build && \
Expand Down

0 comments on commit c1f956c

Please sign in to comment.