1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 19:02:18 +01:00

Avoid unsafe git error when container user and file config volume permissions don't match (#6843)

This commit is contained in:
Pieter Viljoen
2024-06-03 18:34:47 -07:00
committed by GitHub
parent b8d2a6f574
commit 05491e756b
2 changed files with 3 additions and 5 deletions

View File

@@ -100,6 +100,9 @@ RUN --mount=type=tmpfs,target=/root/.cargo if [ "$TARGETARCH$TARGETVARIANT" = "a
--break-system-packages --no-cache-dir -r /requirements.txt -r /requirements_optional.txt \
&& /platformio_install_deps.py /platformio.ini --libraries
# Avoid unsafe git error when container user and file config volume permissions don't match
RUN git config --system --add safe.directory '/config/*'
# ======================= docker-type image =======================
FROM base AS docker