diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-10-12 16:30:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-12 16:30:57 +0200 |
| commit | 5492de15bb7ae3e10fb6ba9393702e9b0a05c615 (patch) | |
| tree | 3a113b25511d24e1e04bbe28a9065fdc51ff2ca1 /container/dist.dockerfile | |
| parent | ced08e12aafc73a4e903e0cc0546729248b437b5 (diff) | |
[mod] container: move `base` to own repository (#5310)
The base images will be now built in
[another repository](https://github.com/searxng/base).
Diffstat (limited to 'container/dist.dockerfile')
| -rw-r--r-- | container/dist.dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
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" |