mirror of
https://github.com/embedd-actions/platformio-ci.git
synced 2024-12-25 16:32:25 +03:00
9 lines
173 B
Docker
9 lines
173 B
Docker
FROM debian:stable-slim
|
|
|
|
RUN apt-get update && \
|
|
apt-get install \
|
|
python3 \
|
|
python3-pip \
|
|
-y && \
|
|
rm -rf /var/cache/apt && \
|
|
pip3 install platformio |