Skip to content

Commit

Permalink
Adds missing flag to full devcontainer Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nosknut committed Aug 6, 2023
1 parent 9edffc9 commit 8ca7e74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .devcontainer/full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 8ca7e74

Please sign in to comment.