feat: dockerfile

This commit is contained in:
2026-04-11 18:58:05 +02:00
parent f23640a1c6
commit f70a893fd4
3 changed files with 36 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.14-alpine
WORKDIR /app
VOLUME [ "/app/data" ]
RUN PIP_ROOT_USER_ACTION=ignore python3 -m pip install uv
COPY uv.lock pyproject.toml ./
RUN uv sync --no-dev
COPY main.py ./
COPY src ./src/
ENTRYPOINT [ "uv", "run", "--no-sync", "main.py" ]