banker/build/docker_install.sh
Timothy J. Warren f67e4c41e4
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
Attempt to add code quality stuff back to Jenkins
2023-03-16 14:25:46 -04:00

18 lines
345 B
Bash

#!/bin/bash
# We need to install dependencies only for Docker
[[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0
set -xe
apt-get update && apt-get install -y \
libz-dev \
libmemcached-dev \
git \
curl
docker-php-ext-install zip
pecl install apcu
pecl install memcached
pecl install pcov
docker-php-ext-enable apcu memcached pcov