diff --git a/app/Dockerfile b/app/Dockerfile index 84ffe88..df85b81 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -59,7 +59,6 @@ RUN python -m pip install --no-cache-dir --no-cache --no-index /root/wheels/* && # copy the content of the local src and config directory to the working directory COPY --chmod=0700 entrypoint.sh /root/entrypoint.sh -COPY config . COPY src . RUN echo ${VERSION} > /proxy-version.txt \ && date > /build-date.txt diff --git a/app/config/default_config.toml b/app/src/cnf/default_config.toml similarity index 100% rename from app/config/default_config.toml rename to app/src/cnf/default_config.toml diff --git a/ha_addons/Makefile b/ha_addons/Makefile index b0faba8..bbfe982 100644 --- a/ha_addons/Makefile +++ b/ha_addons/Makefile @@ -25,6 +25,7 @@ TEMPL=templates SRC_FILES := $(wildcard $(SRC_PROXY)/*.py)\ $(wildcard $(SRC_PROXY)/*.ini)\ $(wildcard $(SRC_PROXY)/cnf/*.py)\ + $(wildcard $(SRC_PROXY)/cnf/*.toml)\ $(wildcard $(SRC_PROXY)/gen3/*.py)\ $(wildcard $(SRC_PROXY)/gen3plus/*.py) CNF_FILES := $(wildcard $(CNF_PROXY)/*.toml)