From 4b4f6aa784c4d7dc545fbb28c14f701f6e458621 Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Sun, 19 Jun 2022 13:40:29 +0200 Subject: [PATCH] Install Platformio not in Gitpod Image --- .gitpod.Dockerfile | 2 -- .gitpod.yml | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 29d75d19d..f16b02389 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,5 +1,3 @@ FROM gitpod/workspace-full USER gitpod - -RUN pip3 install -U platformio diff --git a/.gitpod.yml b/.gitpod.yml index 50d9a86d9..170b688e0 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,5 @@ tasks: - - before: platformio upgrade - - command: platformio run -e tasmota + - command: pip3 install -U platformio && platformio run -e tasmota image: file: .gitpod.Dockerfile