2024-08-10 04:58:53 +00:00
|
|
|
|
FROM python:3.12-alpine
|
2024-05-15 11:06:49 +00:00
|
|
|
|
|
2024-08-10 04:58:53 +00:00
|
|
|
|
LABEL org.opencontainers.image.title="proxy.py" \
|
|
|
|
|
org.opencontainers.image.description="💫 Ngrok FRP Alternative • ⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • \
|
2024-05-15 11:06:49 +00:00
|
|
|
|
😈 TLS interception • 🔒 DNS-over-HTTPS • 🔥 Poor Man's VPN • ⏪ Reverse & ⏩ Forward • \
|
|
|
|
|
👮🏿 \"Proxy Server\" framework • 🌐 \"Web Server\" framework • ➵ ➶ ➷ ➠ \"PubSub\" framework • \
|
|
|
|
|
👷 \"Work\" acceptor & executor framework" \
|
2024-08-10 04:58:53 +00:00
|
|
|
|
org.opencontainers.image.url="https://github.com/abhinavsingh/proxy.py" \
|
2024-05-15 11:46:38 +00:00
|
|
|
|
org.opencontainers.image.source="https://github.com/abhinavsingh/proxy.py" \
|
|
|
|
|
org.opencontainers.image.licenses="BSD-3-Clause" \
|
|
|
|
|
org.opencontainers.image.authors="Abhinav Singh <mailsforabhinav@gmail.com>" \
|
2024-08-10 04:58:53 +00:00
|
|
|
|
org.opencontainers.image.vendor="Abhinav Singh" \
|
|
|
|
|
org.opencontainers.image.created="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \
|
|
|
|
|
org.opencontainers.image.documentation="https://github.com/abhinavsingh/proxy.py#readme" \
|
|
|
|
|
org.opencontainers.image.ref.name="abhinavsingh/proxy.py" \
|
|
|
|
|
com.abhinavsingh.docker.cmd="docker run -it --rm -p 8899:8899 abhinavsingh/proxy.py"
|
2024-05-15 11:06:49 +00:00
|
|
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
2024-05-15 14:54:41 +00:00
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
2024-05-15 11:06:49 +00:00
|
|
|
|
|
|
|
|
|
# Install paramiko and cryptography to allow
|
|
|
|
|
# users to use tunneling features using Docker
|
|
|
|
|
RUN apk update && apk --no-cache add \
|
|
|
|
|
--virtual .builddeps \
|
|
|
|
|
gcc \
|
|
|
|
|
musl-dev \
|
|
|
|
|
libffi-dev \
|
|
|
|
|
openssl-dev \
|
|
|
|
|
python3-dev \
|
|
|
|
|
cargo \
|
|
|
|
|
rust \
|
|
|
|
|
make
|
|
|
|
|
RUN python -m venv /proxy/venv && \
|
2024-05-15 14:54:41 +00:00
|
|
|
|
/proxy/venv/bin/pip install --no-compile --no-cache-dir \
|
2024-05-15 11:06:49 +00:00
|
|
|
|
-U pip wheel && \
|
2024-05-15 14:54:41 +00:00
|
|
|
|
/proxy/venv/bin/pip install --no-compile --no-cache-dir \
|
2024-05-15 11:06:49 +00:00
|
|
|
|
paramiko==3.4.0 \
|
2024-05-15 19:04:26 +00:00
|
|
|
|
cryptography==42.0.4 \
|
2024-05-15 14:54:41 +00:00
|
|
|
|
--prefer-binary && \
|
|
|
|
|
apk del .builddeps && \
|
|
|
|
|
find . -type d -name '__pycache__' | xargs rm -rf && \
|
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
|
rm -rf /root/.cache/
|