ci(minor): fix default settings so CI works
This commit is contained in:
parent
2ff9ec6522
commit
2bffc12ef9
|
@ -7,6 +7,7 @@ WORKDIR /app/
|
||||||
|
|
||||||
RUN apk update && \
|
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 && \
|
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 && \
|
pipenv lock -r > requirements.txt && \
|
||||||
pip install -r requirements.txt --no-cache-dir && \
|
pip install -r requirements.txt --no-cache-dir && \
|
||||||
adduser -S passbook && \
|
adduser -S passbook && \
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
postgresql:
|
postgresql:
|
||||||
host: localhost
|
host: localhost
|
||||||
name: passbook
|
name: passbook
|
||||||
user: postgres
|
user: passbook
|
||||||
password: ''
|
password: 'env://POSTGRES_PASSWORD'
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
host: localhost
|
host: localhost
|
||||||
|
|
Reference in New Issue