12 lines
155 B
Docker
12 lines
155 B
Docker
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"]
|