mirror of
https://github.com/embedd-actions/platformio-ci.git
synced 2025-04-19 07:35:39 +03:00
11 lines
152 B
Docker
11 lines
152 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && \
|
|
apk add \
|
|
python3 \
|
|
py3-pip \
|
|
&& \
|
|
pip3 install platformio \
|
|
&& \
|
|
apk cache -v sync
|