From dc6417e40d18b437126e895fb443649f091dbf21 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Sun, 6 Mar 2022 20:05:45 +0700 Subject: [PATCH] Install curl --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e0affd9..5e57956 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ WORKDIR /home/node/app COPY . . RUN apt-get update -y +RUN apt-get install curl -y RUN curl -sL https://deb.nodesource.com/setup_17.x | bash - RUN apt-get -y install nodejs RUN npm i -g yarn @@ -15,6 +16,7 @@ FROM debian WORKDIR /home/node/app RUN apt-get update -y +RUN apt-get install curl -y RUN curl -sL https://deb.nodesource.com/setup_17.x | bash - RUN apt-get -y install nodejs RUN npm i -g yarn