diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2026-06-16 15:32:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-16 15:32:47 +0200 |
| commit | 502c820a25bfd9e7a7175671c9d7dc96cf8afbdf (patch) | |
| tree | 2eb71a5ea283bcaba72bc99e88eff7d467588065 /utils | |
| parent | 4fb49b44988b0c2e9f323e0526f0c9c2bb8dfa2d (diff) | |
[fix] container: setup minimal (#6268)
Start minimal, use defaults, and extend later on. The templates are no longer
checked for changes, which was confusing and annoying after a while.
See: https://github.com/searxng/searxng/issues/6261#issuecomment-4716008282
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/lib_sxng_container.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/utils/lib_sxng_container.sh b/utils/lib_sxng_container.sh index 50c1c7ef1..90b8f802b 100644 --- a/utils/lib_sxng_container.sh +++ b/utils/lib_sxng_container.sh @@ -99,8 +99,6 @@ container.build() { timestamp_venv="$timestamp_requirements_server" fi - timestamp_searx_settings=$(git log -1 --format='%ct' ./searx/settings.yml) - if [ "$container_engine" = "podman" ]; then params_build_builder="build --format=oci --platform=$platform --layers --identity-label=false --timestamp=$timestamp_venv" params_build="build --format=oci --platform=$platform --layers --identity-label=false" @@ -119,7 +117,6 @@ container.build() { # shellcheck disable=SC2086 "$container_engine" $params_build_builder \ --build-arg="TIMESTAMP_VENV=$timestamp_venv" \ - --build-arg="TIMESTAMP_SETTINGS=$timestamp_searx_settings" \ --tag="localhost/$CONTAINER_IMAGE_ORGANIZATION/$CONTAINER_IMAGE_NAME:builder" \ --file="./container/builder.dockerfile" \ . |
