Fix mbc login in docker

This fixes the following error:

FileNotFoundError: [Errno 2] No such file or directory: '/root/.config/maubot-cli.json'
This commit is contained in:
Sandro 2020-02-25 07:36:45 +01:00 committed by GitHub
parent 3621ddc190
commit 72df8964ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,8 @@ RUN apk add --no-cache \
py3-click \
py3-packaging \
py3-markdown \
&& pip3 install -r requirements.txt feedparser dateparser langdetect python-gitlab
&& pip3 install -r requirements.txt feedparser dateparser langdetect python-gitlab \
&& mkdir -p /root/.config
# TODO remove pillow, magic and feedparser when maubot supports installing dependencies
VOLUME /data