From 8ca7e74e9f42ff725b4958387483f345a9999613 Mon Sep 17 00:00:00 2001 From: nosknut Date: Sun, 6 Aug 2023 09:07:08 +0200 Subject: [PATCH] Adds missing flag to full devcontainer Dockerfile --- .devcontainer/full/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/full/Dockerfile b/.devcontainer/full/Dockerfile index f8e5330..9392d6b 100644 --- a/.devcontainer/full/Dockerfile +++ b/.devcontainer/full/Dockerfile @@ -2,8 +2,8 @@ FROM ubuntu USER root -RUN apt-get update -RUN apt-get upgrade +RUN apt-get update -y +RUN apt-get upgrade -y RUN apt-get install wget -y RUN apt-get install curl -y @@ -12,8 +12,8 @@ RUN apt-get install pip -y RUN apt-get install nodejs -y # Installing npm requires another apt-get update and upgrade -RUN apt-get update -RUN apt-get upgrade +RUN apt-get update -y +RUN apt-get upgrade -y RUN apt-get install npm -y # Install arduino-cli: