From b47306acf4bb1837e0d17f96a00cdff325aa111c Mon Sep 17 00:00:00 2001 From: Thiago Leoncio Scherrer Date: Wed, 14 Jun 2023 09:16:21 -0300 Subject: [PATCH] fix: pio pkg update deprecated --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6be3eb..49c1566 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.7-buster ENV PIO_URL https://github.com/platformio/platformio-core/archive/develop.zip RUN pip install -U ${PIO_URL} \ - && platformio update + && pio pkg update COPY bin/entrypoint.sh /bin/entrypoint.sh