mirror of
https://github.com/embedd-actions/platformio-ci.git
synced 2024-12-25 16:32:25 +03:00
11 lines
152 B
Docker
11 lines
152 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && \
|
|
apt add \
|
|
python3 \
|
|
py3-pip \
|
|
&& \
|
|
pip3 install platformio \
|
|
&& \
|
|
apk cache -v sync
|