diff --git a/linux/ecosystem/nodejs/outdated/node11/Dockerfile b/linux/ecosystem/nodejs/outdated/node11/Dockerfile index 7693cc08f..e7c54f0cc 100644 --- a/linux/ecosystem/nodejs/outdated/node11/Dockerfile +++ b/linux/ecosystem/nodejs/outdated/node11/Dockerfile @@ -8,7 +8,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN groupadd node && \ useradd --gid node --shell /bin/bash --create-home node -RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - && \ +RUN curl -fsSL https://deb.nodesource.com/setup_11.x | bash - && \ curl -fsSL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/yarnpkg.gpg && \ echo "deb [signed-by=/etc/apt/keyrings/yarnpkg.gpg] https://nightly.yarnpkg.com/debian/ nightly main" > /etc/apt/sources.list.d/yarn.list && \ apt-get update && \