From 2a1995727a74f069b5545f0ea7b94e33f1af5efc Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Wed, 13 Sep 2023 16:02:16 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e50443..18702f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ -FROM alpine:latest +FROM node:16-bullseye -RUN apk update && \ - apk add \ +RUN apt-get update && \ + apt-get install \ python3 \ - py3-pip \ - && \ - pip3 install platformio \ - && \ - apk cache -v sync + python3-pip \ + -y && \ + rm -rf /var/cache/apt && \ + pip3 install platformio