init
This commit is contained in:
commit
ec1112e162
22 changed files with 837 additions and 0 deletions
12
Containerfile
Normal file
12
Containerfile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY pyproject.toml .
|
||||
RUN pip install --no-cache-dir .
|
||||
|
||||
COPY bot/ bot/
|
||||
|
||||
VOLUME /app/data
|
||||
|
||||
CMD ["python", "-m", "bot"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue