mirror of
https://github.com/searxng/searxng.git
synced 2025-08-03 02:22:22 +02:00
Some checks are pending
Documentation / Release (push) Waiting to run
Integration / Python 3.11 (push) Waiting to run
Integration / Python 3.10 (push) Waiting to run
Integration / Python 3.12 (push) Waiting to run
Integration / Python 3.13 (push) Waiting to run
Integration / Python 3.9 (push) Waiting to run
Integration / Theme (push) Waiting to run
* [upd] pypi: Bump lxml from 5.4.0 to 6.0.0 Bumps [lxml](https://github.com/lxml/lxml) from 5.4.0 to 6.0.0. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](https://github.com/lxml/lxml/compare/lxml-5.4.0...lxml-6.0.0) --- updated-dependencies: - dependency-name: lxml dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * [enh] container: remove unneeded dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ivan Gabaldon <igabaldon@inetol.net>
61 lines
1 KiB
YAML
61 lines
1 KiB
YAML
contents:
|
|
repositories:
|
|
- https://mirrors.edge.kernel.org/alpine/edge/main
|
|
packages:
|
|
- alpine-baselayout
|
|
- ca-certificates-bundle
|
|
- busybox
|
|
- python3
|
|
# healthcheck
|
|
- wget
|
|
# uwsgi
|
|
- libxml2
|
|
- mailcap
|
|
|
|
entrypoint:
|
|
command: /bin/sh -l
|
|
|
|
work-dir: /usr/local/searxng/
|
|
|
|
accounts:
|
|
groups:
|
|
- groupname: searxng
|
|
gid: 977
|
|
users:
|
|
- username: searxng
|
|
uid: 977
|
|
shell: /bin/ash
|
|
|
|
environment:
|
|
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
SSL_CERT_FILE: /etc/ssl/certs/ca-certificates.crt
|
|
HISTFILE: /dev/null
|
|
CONFIG_PATH: /etc/searxng
|
|
DATA_PATH: /var/cache/searxng
|
|
|
|
paths:
|
|
# Workdir
|
|
- path: /usr/local/searxng/
|
|
type: directory
|
|
uid: 977
|
|
gid: 977
|
|
permissions: 0o555
|
|
|
|
# Config volume
|
|
- path: /etc/searxng/
|
|
type: directory
|
|
uid: 977
|
|
gid: 977
|
|
permissions: 0o755
|
|
|
|
# Data volume
|
|
- path: /var/cache/searxng/
|
|
type: directory
|
|
uid: 977
|
|
gid: 977
|
|
permissions: 0o755
|
|
|
|
archs:
|
|
- x86_64
|
|
- aarch64
|
|
- armv7
|