From ea8b32720a263c9ab7f48b547e18d303e99306f6 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Thu, 14 Sep 2023 08:35:06 +0300 Subject: [PATCH 1/2] Update Dockerfile --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 18702f8..b4771fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM node:16-bullseye +FROM debian:stable-slim RUN apt-get update && \ apt-get install \ python3 \ python3-pip \ - -y && \ + -y \ + --no-install-recommends \ + && \ rm -rf /var/cache/apt && \ - pip3 install platformio + pip3 install platformio --break-system-packages From 669f0fcf25a913b360750a1431c7505a70717cdc Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Thu, 14 Sep 2023 08:47:04 +0300 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b4771fe..815bfe7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,10 @@ FROM debian:stable-slim RUN apt-get update && \ apt-get install \ + --no-install-recommends \ python3 \ python3-pip \ -y \ - --no-install-recommends \ && \ rm -rf /var/cache/apt && \ pip3 install platformio --break-system-packages