diff --git a/Dockerfile b/Dockerfile index 18702f8..815bfe7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM node:16-bullseye +FROM debian:stable-slim RUN apt-get update && \ apt-get install \ + --no-install-recommends \ python3 \ python3-pip \ - -y && \ + -y \ + && \ rm -rf /var/cache/apt && \ - pip3 install platformio + pip3 install platformio --break-system-packages