Fix jwt-token

This commit is contained in:
2025-08-19 19:13:32 +02:00
parent 4a62b0d5cc
commit 88e2260e98
8 changed files with 593 additions and 37 deletions

18
Dockerfile.healthprobe Normal file
View File

@@ -0,0 +1,18 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install required Python packages
RUN pip install --no-cache-dir requests
# Copy the health probe simulator script
COPY health_probe_simulator.py .
# Set environment variables with defaults
ENV PROBE_FAILRATE=30
ENV PROBE_INTERVAL_SECONDS=60
ENV API_BASE_URL=https://selfservice.cqers.com/drones/api
# Run the health probe simulator
CMD ["python", "health_probe_simulator.py"]