platformio-ci/Dockerfile

12 lines
234 B
Docker
Raw Permalink Normal View History

2023-09-14 08:35:06 +03:00
FROM debian:stable-slim
2023-09-13 13:50:57 +03:00
2023-09-13 16:02:16 +03:00
RUN apt-get update && \
apt-get install \
2023-09-14 08:47:04 +03:00
--no-install-recommends \
2023-09-13 13:50:57 +03:00
python3 \
2023-09-13 16:02:16 +03:00
python3-pip \
2023-09-14 08:35:06 +03:00
-y \
&& \
2023-09-13 16:02:16 +03:00
rm -rf /var/cache/apt && \
2023-09-14 08:35:06 +03:00
pip3 install platformio --break-system-packages