Update Dockerfile

This commit is contained in:
Sergey 2023-09-13 16:02:16 +03:00 committed by GitHub
parent 7f7570cb39
commit 2a1995727a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,9 @@
FROM alpine:latest FROM node:16-bullseye
RUN apk update && \ RUN apt-get update && \
apk add \ apt-get install \
python3 \ python3 \
py3-pip \ python3-pip \
&& \ -y && \
pip3 install platformio \ rm -rf /var/cache/apt && \
&& \ pip3 install platformio
apk cache -v sync