| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 | FROM ubuntu:20.04ARG DEBIAN_FRONTEND=noninteractiveENV GCC_TOOLS_BASE=/opt/esp/tools/xtensa-esp32-elf/esp-2021r2-8.4.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-# We need libpython2.7 due to GDB tools# we also need npm 8 for the webapp to workRUN : \  && apt-get update \  && apt-get install -y \    apt-utils \    bison \    ca-certificates \    ccache \    check \    curl \    flex \    git \    gperf \    lcov \    libffi-dev \    libncurses-dev \    libpython2.7 \    libusb-1.0-0-dev \    make \    ninja-build \    python3 \    python3-pip \    unzip \    wget \    xz-utils \    zip \    	npm \	nodejs \  && apt-get autoremove -y \  && rm -rf /var/lib/apt/lists/* \  && update-alternatives --install /usr/bin/python python /usr/bin/python3 10 \  && python -m pip install --upgrade \    pip \    virtualenv \  && cd /opt \    && git clone https://github.com/HBehrens/puncover.git \  && cd puncover \  && python setup.py -q install \  && :# To build the image for a branch or a tag of IDF, pass --build-arg IDF_CLONE_BRANCH_OR_TAG=name.# To build the image with a specific commit ID of IDF, pass --build-arg IDF_CHECKOUT_REF=commit-id.# It is possibe to combine both, e.g.:#   IDF_CLONE_BRANCH_OR_TAG=release/vX.Y#   IDF_CHECKOUT_REF=<some commit on release/vX.Y branch>.# The following commit contains the ldgen fix: eab738c79e063b3d6f4c345ea5e1d4f8caef725b# to build an image using that commit: docker build . --build-arg IDF_CHECKOUT_REF=eab738c79e063b3d6f4c345ea5e1d4f8caef725b -t sle118/squeezelite-esp32-idfv4-master# Docker build for release 4.3.2 as of 2022/02/28# docker build . --build-arg IDF_CHECKOUT_REF=8bf14a9238329954c7c5062eeeda569529aedf75 -t sle118/squeezelite-esp32-idfv4-master# To run the image interactive (windows): docker run --rm -v %cd%:/project -w /project -it sle118/squeezelite-esp32-idfv4-master# to build the web app inside of the interactive session# pushd components/wifi-manager/webapp/ && npm install && npm run-script build && popd## to run the docker with netwotrk port published on the host:# docker run --rm -p 5000:5000/tcp -v %cd%:/project -w /project -it sle118/squeezelite-esp32-idfv4-masterARG IDF_CLONE_URL=https://github.com/espressif/esp-idf.gitARG IDF_CLONE_BRANCH_OR_TAG=masterARG IDF_CHECKOUT_REF=8bf14a9238329954c7c5062eeeda569529aedf75ENV IDF_PATH=/opt/esp/idfENV IDF_TOOLS_PATH=/opt/espRUN echo IDF_CHECKOUT_REF=$IDF_CHECKOUT_REF IDF_CLONE_BRANCH_OR_TAG=$IDF_CLONE_BRANCH_OR_TAG && \    git clone --recursive \      ${IDF_CLONE_BRANCH_OR_TAG:+-b $IDF_CLONE_BRANCH_OR_TAG} \      $IDF_CLONE_URL $IDF_PATH && \	  if [ -n "$IDF_CHECKOUT_REF" ]; then \      cd $IDF_PATH && \      git checkout $IDF_CHECKOUT_REF && \      git submodule update --init --recursive; \    fi COPY docker/patches $IDF_PATH# Install all the required toolsRUN : \  && update-ca-certificates --fresh \  && $IDF_PATH/tools/idf_tools.py --non-interactive install required \  && $IDF_PATH/tools/idf_tools.py --non-interactive install cmake \  && $IDF_PATH/tools/idf_tools.py --non-interactive install-python-env \  && rm -rf $IDF_TOOLS_PATH/dist \  && :# Ccache is installed, enable it by defaultENV IDF_CCACHE_ENABLE=1COPY docker/entrypoint.sh /opt/esp/entrypoint.sh# Now install nodejs, npm and the packages we needCOPY components/wifi-manager/webapp/package.json /optENV NODE_VERSION 8SHELL ["/bin/bash", "--login", "-c"]# Install nvm with node and npm# RUN wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash \#     && export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" \#     && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" \#     && nvm install $NODE_VERSION \#     && nvm alias default $NODE_VERSION \#     && nvm use default \#     && echo installing nodejs version 16  \#     && curl -sL https://deb.nodesource.com/setup_16.x | bash - \#     && echo installing node modules  \#     && cd /opt \#     && nvm use default \#     && npm install -g \  #     && :    RUN : \  && curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \  && apt-get install -y nodejs \    && echo installing node modules  \    && cd /opt \    && npm i -g npm \    && node --version \    && npm install -g \      && :      ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modulesENV PATH      $NVM_DIR/v$NODE_VERSION/bin:$PATHENTRYPOINT [ "/opt/esp/entrypoint.sh" ]CMD [ "/bin/bash" ]
 |