add: remove secret strings

This commit is contained in:
h z
2025-05-23 19:44:49 +01:00
commit f96707629f
32 changed files with 597 additions and 0 deletions

28
Dockerfile Normal file
View File

@@ -0,0 +1,28 @@
FROM python:3.12-slim
ENV PYTHONUNBUFFERED=1
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
openssh-client \
curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY pyproject.toml ./
COPY src/ ./src
COPY app.py ./
COPY project_plan.md ./
COPY scripts/ ./scripts
RUN pip install --upgrade pip \
&& pip install uv \
&& uv pip install .
RUN mkdir logs
EXPOSE 5058 5059
ENTRYPOINT ["uv", "run", "python", "app.py"]