Fix up NodeJS install GPU side
This commit is contained in:
parent
b723f44587
commit
f53c0c7195
@ -7,7 +7,13 @@ RUN apt update
|
|||||||
|
|
||||||
RUN apt install sudo curl -y
|
RUN apt install sudo curl -y
|
||||||
|
|
||||||
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - && sudo apt-get install -y nodejs
|
RUN apt-get install -y ca-certificates curl gnupg
|
||||||
|
RUN sudo mkdir -p /etc/apt/keyrings
|
||||||
|
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||||
|
ENV NODE_MAJOR=18
|
||||||
|
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install nodejs -y
|
||||||
|
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
RUN npm install --omit=dev
|
RUN npm install --omit=dev
|
||||||
|
Loading…
Reference in New Issue
Block a user