Skip to content
This repository was archived by the owner on May 17, 2023. It is now read-only.
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN git clone --depth 1 https://github.com/nodejs/node --branch ${NODE_VERSION}

FROM fetch as configure
WORKDIR /usr/src/app/node
RUN ./configure --fully-static --enable-static
RUN if [ $(uname -m) = armv7l ]; then ./configure --fully-static --enable-static --openssl-no-asm; else ./configure --fully-static --enable-static; fi
Comment thread
maxb2 marked this conversation as resolved.
Outdated

FROM configure as compile
ARG NPROCS=1
Expand Down