Update files
This commit is contained in:
parent
81030d1297
commit
73d8dd543f
5 changed files with 191 additions and 9 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue