feat: add container support with Containerfile and make targets

- Containerfile: python:3.13-slim base, pip install, copy plugins
- .containerignore: exclude dev artifacts from build context
- Makefile: add build, container-run, container-stop, container-logs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-15 01:16:05 +01:00
parent 77f9a364e6
commit 7b9cde6192
3 changed files with 42 additions and 1 deletions

13
Containerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.13-slim
WORKDIR /app
COPY pyproject.toml .
COPY src/ src/
RUN pip install --no-cache-dir .
COPY plugins/ plugins/
COPY config/derp.toml.example config/derp.toml.example
ENTRYPOINT ["derp"]