mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
16 lines
459 B
Bash
Executable file
16 lines
459 B
Bash
Executable file
#!/bin/bash
|
|
# Install Arch Linux dependencies. This is centralized here
|
|
# for CI and Docker usage and should always reflect the most
|
|
# robust development ecosystem.
|
|
set -eou pipefail
|
|
|
|
pacman -Syu --noconfirm --noprogressbar \
|
|
--cachedir .pkg-cache git gpgme \
|
|
nginx redis openssh \
|
|
mariadb mariadb-libs \
|
|
cgit uwsgi uwsgi-plugin-cgi \
|
|
php php-fpm \
|
|
memcached php-memcached \
|
|
python-pip pyalpm python-srcinfo
|
|
|
|
exec "$@"
|