diff options
author | Alexandre Flament <alex@al-f.net> | 2021-04-24 08:53:12 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-04-28 14:40:00 +0200 |
commit | 20580bcbd458fa18c13bb9c1a32466ee5af48f97 (patch) | |
tree | 6667317d1953b92685bd094d0c23f791cd31d68d /Dockerfile | |
parent | fe3831db1aa73ebda6eb12fa3a321002c176ccc1 (diff) | |
download | searxng-20580bcbd458fa18c13bb9c1a32466ee5af48f97.tar.gz searxng-20580bcbd458fa18c13bb9c1a32466ee5af48f97.zip |
[docker] multiarch support: linux/amd64,linux/arm64,linux/arm/v7
make docker.buildx : build and push multiarch build.
(it can't be only build)
use buildx with the --cache-from and --cache-to options to cache the layers
(only the last built is cached)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile index 3fbf62f35..477cdb1ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -73,18 +73,18 @@ ARG GIT_URL=unknown ARG SEARX_GIT_VERSION=unknown ARG LABEL_VCS_REF= ARG LABEL_VCS_URL= -LABEL maintainer="searx <${GIT_URL}>" \ +LABEL maintainer="searxng <${GIT_URL}>" \ description="A privacy-respecting, hackable metasearch engine." \ version="${SEARX_GIT_VERSION}" \ org.label-schema.schema-version="1.0" \ - org.label-schema.name="searx" \ + org.label-schema.name="searxng" \ org.label-schema.version="${SEARX_GIT_VERSION}" \ org.label-schema.url="${LABEL_VCS_URL}" \ org.label-schema.vcs-ref=${LABEL_VCS_REF} \ org.label-schema.vcs-url=${LABEL_VCS_URL} \ org.label-schema.build-date="${LABEL_DATE}" \ org.label-schema.usage="https://github.com/searx/searx-docker" \ - org.opencontainers.image.title="searx" \ + org.opencontainers.image.title="searxng" \ org.opencontainers.image.version="${SEARX_GIT_VERSION}" \ org.opencontainers.image.url="${LABEL_VCS_URL}" \ org.opencontainers.image.revision=${LABEL_VCS_REF} \ |