You've already forked mattermost-ai-bot
11 lines
145 B
Docker
11 lines
145 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY src/* ./
|
|
|
|
ENTRYPOINT ["python", "bot.py"]
|