Files
OpenVPN-Monitoring-Simple/APP_CORE/Dockerfile.gatherer
2026-02-05 07:36:25 +03:00

14 lines
227 B
Docker

FROM python:3.12-alpine
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY . .
# Run the gatherer
CMD ["python", "openvpn_gatherer_v3.py"]