platformio-ci/Dockerfile
2023-09-22 21:54:52 +03:00

18 lines
330 B
Docker

FROM debian:stable-slim
RUN apt-get update && \
apt-get install \
--no-install-recommends \
python3 \
python3-pip \
-y \
&& \
rm -rf /var/cache/apt && \
pip3 install platformio --break-system-packages
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]