Update Dockerfile

This commit is contained in:
Sergey
2023-09-13 14:43:11 +03:00
committed by GitHub
parent 87d2468313
commit 228c883347

View File

@ -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
py3-pip \
&& \
pip3 install platformio \
&& \
apk cache -v sync