diff --git a/.gitattributes b/.gitattributes index 176a458f94..a8d4103c3d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ * text=auto +scripts/* text eol=lf diff --git a/README.md b/README.md index 8aeaf21375..17455a29ea 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,6 @@ to load dummy data for testing run: make load-dummy-data ``` -> [!NOTE] -> If you are unable to compose up care in windows, ensure line endings are set to `LF` (`docker-entrypoint.sh` won't -> work with `CRLF` line endings). -> ``` -> git config core.autocrlf false -> ``` - #### Docker Prebuilt docker images for server deployments are available diff --git a/docker/dev.Dockerfile b/docker/dev.Dockerfile index 17d5c8df59..9bbb9e492a 100644 --- a/docker/dev.Dockerfile +++ b/docker/dev.Dockerfile @@ -37,12 +37,10 @@ RUN python -m venv /.venv COPY Pipfile Pipfile.lock $APP_HOME/ RUN --mount=type=cache,target=/root/.cache/pip pipenv install --system --categories "packages dev-packages docs" -COPY plugs/ $APP_HOME/plugs/ -COPY install_plugins.py plug_config.py $APP_HOME/ -RUN --mount=type=cache,target=/root/.cache/pip python3 $APP_HOME/install_plugins.py - COPY . $APP_HOME/ +RUN --mount=type=cache,target=/root/.cache/pip python3 $APP_HOME/install_plugins.py + HEALTHCHECK \ --interval=10s \ --timeout=5s \