Image now contains only the derp package. Config and plugins are bind-mounted at runtime, enabling live edits without rebuilds. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
129 B
Docker
11 lines
129 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml .
|
|
COPY src/ src/
|
|
|
|
RUN pip install --no-cache-dir .
|
|
|
|
ENTRYPOINT ["derp"]
|