tools/docker: enable ccache by default

This commit is contained in:
Ivan Grokhotkov 2020-01-24 19:12:22 +01:00
parent bf6e745ac0
commit 70dee9f4bb

View file

@ -58,6 +58,9 @@ RUN $IDF_PATH/tools/idf_tools.py --non-interactive install required \
&& $IDF_PATH/tools/idf_tools.py --non-interactive install-python-env \
&& rm -rf $IDF_TOOLS_PATH/dist
# Ccache is installed, enable it by default
ENV IDF_CCACHE_ENABLE=1
COPY entrypoint.sh /opt/esp/entrypoint.sh
ENTRYPOINT [ "/opt/esp/entrypoint.sh" ]