From 5492de15bb7ae3e10fb6ba9393702e9b0a05c615 Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Sun, 12 Oct 2025 16:30:57 +0200 Subject: [mod] container: move `base` to own repository (#5310) The base images will be now built in [another repository](https://github.com/searxng/base). --- container/dist.dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'container/dist.dockerfile') diff --git a/container/dist.dockerfile b/container/dist.dockerfile index 66ece521f..10ad0d88f 100644 --- a/container/dist.dockerfile +++ b/container/dist.dockerfile @@ -4,10 +4,10 @@ ARG CONTAINER_IMAGE_NAME="searxng" FROM localhost/$CONTAINER_IMAGE_ORGANIZATION/$CONTAINER_IMAGE_NAME:builder AS builder FROM ghcr.io/searxng/base:searxng AS dist -COPY --chown=searxng:searxng --from=builder /usr/local/searxng/.venv/ ./.venv/ -COPY --chown=searxng:searxng --from=builder /usr/local/searxng/searx/ ./searx/ -COPY --chown=searxng:searxng ./container/ ./ -#COPY --chown=searxng:searxng ./searx/version_frozen.py ./searx/ +COPY --chown=977:977 --from=builder /usr/local/searxng/.venv/ ./.venv/ +COPY --chown=977:977 --from=builder /usr/local/searxng/searx/ ./searx/ +COPY --chown=977:977 ./container/ ./ +#COPY --chown=977:977 ./searx/version_frozen.py ./searx/ ARG CREATED="0001-01-01T00:00:00Z" ARG VERSION="unknown" -- cgit v1.2.3