From 72df8964ae68b87fc979adddcfdd16aac50f9cdf Mon Sep 17 00:00:00 2001 From: Sandro Date: Tue, 25 Feb 2020 07:36:45 +0100 Subject: [PATCH] Fix mbc login in docker This fixes the following error: FileNotFoundError: [Errno 2] No such file or directory: '/root/.config/maubot-cli.json' --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa7fc9d..de1b728 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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