add: remove secret strings
This commit is contained in:
28
Dockerfile
Normal file
28
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user