12 lines
227 B
Docker
12 lines
227 B
Docker
FROM espressif/idf:release-v5.2
|
|
|
|
LABEL maintainer="andreas.tsouchlos@gmail.com"
|
|
|
|
# Make building with a non-root user possible
|
|
RUN mkdir -p /home/build
|
|
RUN chmod -R 777 /home/build
|
|
ENV HOME=/home/build
|
|
|
|
ENV IDF_TARGET=esp32c3
|
|
|