From 228c88334766e6f26a07399c9a0946f56d9becb3 Mon Sep 17 00:00:00 2001 From: Sergey <61871201+SergeyLadanov@users.noreply.github.com> Date: Wed, 13 Sep 2023 14:43:11 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 244ddf2..2652b45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ -FROM debian:stable-slim +FROM alpine:latest -RUN apt-get update && \ - apt-get install \ +RUN apk update && \ + apt add \ python3 \ - python3-pip \ - -y && \ - rm -rf /var/cache/apt && \ - pip3 install platformio \ No newline at end of file + py3-pip \ + && \ + pip3 install platformio \ + && \ + apk cache -v sync