# Incremental rebuild on top of the previously published image. # Used when the upstream python:3.11-alpine base cannot be pulled # (mirror rate limits). Only ships the updated app source. # # docker build -f Dockerfile.patch -t 192.168.2.66:80/hermes/socks5-monitor:latest . # # This is an escape hatch, not the canonical build. Prefer the plain # `Dockerfile` whenever the base image is reachable, otherwise layers keep # stacking on top of each other with every patch. FROM 192.168.2.66:80/hermes/socks5-monitor:latest WORKDIR /app COPY app.py README.md ./ COPY static ./static