ci(minor): fix default settings so CI works

This commit is contained in:
Langhammer, Jens 2019-10-01 13:22:38 +02:00
parent 2ff9ec6522
commit 2bffc12ef9
2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@ WORKDIR /app/
RUN apk update && \
apk add --no-cache openssl-dev build-base libxml2-dev libxslt-dev libffi-dev gcc musl-dev libgcc zlib-dev postgresql-dev && \
pip install pipenv --no-cache-dir && \
pipenv lock -r > requirements.txt && \
pip install -r requirements.txt --no-cache-dir && \
adduser -S passbook && \

View File

@ -2,8 +2,8 @@
postgresql:
host: localhost
name: passbook
user: postgres
password: ''
user: passbook
password: 'env://POSTGRES_PASSWORD'
redis:
host: localhost