Closed khusseini closed 7 years ago
This way it works wonderfully
FROM python:3-slim
RUN pip install mattermost_bot
ADD mattermost_bot_settings.py /srv/mattermost_bot_settings.py
WORKDIR /srv
ENV MATTERMOST_BOT_SETTINGS_MODULE=mattermost_bot_settings
ENTRYPOINT ["matterbot"]
Hi there,
I was trying to set the matterbot up with a Dockerfile. I have the following
I run the docker container like so:
It seems that the matterbot is not seeing my settings as it is trying to connect to www.example.com/api/v3 What am I doing wrong here?