14 lines
504 B
Bash
14 lines
504 B
Bash
#!/bin/bash
|
|
|
|
# We need to install dependencies only for Docker
|
|
[[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0
|
|
|
|
set -xe
|
|
|
|
# Install sqlite3
|
|
echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
|
|
apk add --no-cache git yarn sqlite3 libsqlite3
|
|
npm install pg sqlite3 dblite mysql2
|
|
|
|
# Replace test config with docker config file
|
|
mv "./config-ci.json" "./config.json" |