Robustness fixes

This commit is contained in:
2026-02-06 17:35:31 +00:00
parent 0fab91c077
commit b412900b4b
3 changed files with 37 additions and 9 deletions

View File

@@ -6,7 +6,6 @@ ENV PYTHONUNBUFFERED=1
# Install system dependencies
RUN apt-get update && apt-get install -y \
fonts-dejavu \
usbutils \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
@@ -16,9 +15,6 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application
COPY client.py .
COPY templates.py .
# Application files will be mounted via volume
# Run the application
CMD ["python", "client.py"]