Update files

This commit is contained in:
Astra 2026-06-25 10:16:10 +01:00
parent 81030d1297
commit 73d8dd543f
5 changed files with 191 additions and 9 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM python:3.12-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY supportbot/ ./supportbot/
ENTRYPOINT ["python", "-m", "supportbot"]
CMD ["-c", "/config.yaml"]