1234567891011121314151617181920212223242526272829 |
- ARG VARIANT="3.9.0-buster"
- FROM python:${VARIANT}
- ARG INSTALL_NODE="true"
- ARG NODE_VERSION="lts/*"
- RUN if [ "${INSTALL_NODE}" = "true" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
- RUN pip install -U https://github.com/platformio/platformio-core/archive/develop.zip
- RUN platformio update
- RUN pip install PyYaml
|