From 4de87fdcfaaa5bf8262b0e20ae554a1295fe1246 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Mon, 12 Aug 2024 17:15:24 +0200 Subject: [PATCH] fix: install yarn with npm --- focal-arm64/Dockerfile | 5 ----- focal-armhf/Dockerfile | 5 ----- focal-riscv64/Dockerfile | 5 ----- 3 files changed, 15 deletions(-) diff --git a/focal-arm64/Dockerfile b/focal-arm64/Dockerfile index e86d051..72759b7 100644 --- a/focal-arm64/Dockerfile +++ b/focal-arm64/Dockerfile @@ -48,11 +48,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 RUN python --version -# Yarn -RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - -RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list -RUN apt-get update && apt-get install -y yarn - # Node.js RUN curl --silent --location https://deb.nodesource.com/setup_20.x | sudo -E bash - RUN apt-get update && apt-get install -y nodejs diff --git a/focal-armhf/Dockerfile b/focal-armhf/Dockerfile index f05b2de..cde7eec 100644 --- a/focal-armhf/Dockerfile +++ b/focal-armhf/Dockerfile @@ -48,11 +48,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 RUN python --version -# Yarn -RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - -RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list -RUN apt-get update && apt-get install -y yarn - # Node.js RUN curl --silent --location https://deb.nodesource.com/setup_20.x | sudo -E bash - RUN apt-get update && apt-get install -y nodejs diff --git a/focal-riscv64/Dockerfile b/focal-riscv64/Dockerfile index 830a5e4..f02b11d 100644 --- a/focal-riscv64/Dockerfile +++ b/focal-riscv64/Dockerfile @@ -49,11 +49,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 RUN python --version -# Yarn -RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - -RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list -RUN apt-get update && apt-get install -y yarn - # Node.js RUN curl --silent --location https://deb.nodesource.com/setup_20.x | sudo -E bash - RUN apt-get update && apt-get install -y nodejs