This commit is contained in:
Wolfgang Hottgenroth 2021-03-08 20:23:12 +01:00
parent d63747e95e
commit 00a4bc345f

View File

@ -4,6 +4,7 @@ LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
LABEL ImageName="registry.hottis.de/dockerized/build-env-esp32"
ARG Esp32CloneUrl=https://github.com/espressif/esp-idf.git
ARG ESP_RELEASE=release/v4.3
ARG UID="1000"
ARG GID="1000"
ENV USER esp32
@ -23,7 +24,7 @@ WORKDIR /home/$USER
RUN \
mkdir project && \
git clone --recursive $Esp32CloneUrl && \
git clone --recursive -b $ESP_RELEASE $Esp32CloneUrl && \
cd esp-idf && \
./install.sh