feat: add Containerfile and podman-compose setup

Host network mode for direct access to SOCKS5 proxy on localhost.
Config volume mounted from ./config. Makefile targets: build, up,
down, logs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
user
2026-02-19 18:34:48 +01:00
parent a58848395c
commit d2144fc029
3 changed files with 38 additions and 2 deletions

13
Containerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml .
COPY src/ src/
RUN pip install --no-cache-dir .
VOLUME /data
ENTRYPOINT ["bouncer"]
CMD ["-c", "/data/bouncer.toml"]