9 Commits

Author SHA1 Message Date
a661af08d6 use bullseye base image 2022-12-04 20:27:32 +01:00
5fd0b78907 fix in dependencies, fix Dockerfile 2022-12-04 20:22:13 +01:00
1adbc9dda1 fix in dependencies 2022-12-04 20:20:22 +01:00
393c7e7024 fix in dependencies 2022-12-04 20:19:16 +01:00
6da38a5d16 5.0 upstream 2022-12-04 19:59:56 +01:00
c60e14ee66 upstream 4.4 2022-12-04 12:28:48 +01:00
00a4bc345f release 2021-03-08 20:23:12 +01:00
d63747e95e trigger pipeline 2021-03-08 19:12:59 +01:00
afe0edcaa6 pip fix 2021-03-08 19:07:36 +01:00

View File

@ -1,20 +1,20 @@
FROM registry.hottis.de/dockerized/base-build-env:1.3.0
FROM registry.hottis.de/dockerized/base-build-env:1.5.3-bullseye
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/v5.0
ARG UID="1000"
ARG GID="1000"
ENV USER esp32
ENV USER esp
RUN \
apt update && \
apt install -y python3 vim.tiny python-serial \
python3-serial flex bison gperf cmake ninja-build \
ccache libffi-dev libssl-dev dfu-util && \
update-alternatives --install /usr/bin/python python /usr/bin/python3 10 && \
update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 10 && \
apt upgrade -y && \
apt install -y git wget flex bison gperf python3 python3-venv cmake \
ninja-build ccache libffi-dev libssl-dev dfu-util \
libusb-1.0-0 python3-pip && \
groupadd -r -g $GID $USER && \
useradd -m -r -u $UID -g $USER -G dialout $USER
@ -23,13 +23,9 @@ WORKDIR /home/$USER
RUN \
mkdir project && \
git clone --recursive $Esp32CloneUrl && \
git clone --recursive -b $ESP_RELEASE $Esp32CloneUrl && \
cd esp-idf && \
./install.sh
VOLUME /home/$USER/project