-
-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Python 3.12 as default Docker base image (#1445)
* Use Python 3.12 as default Docker base image * Add standard OCI labels
- Loading branch information
1 parent
1e4e87d
commit 39854e1
Showing
4 changed files
with
19 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
FROM ghcr.io/abhinavsingh/proxy.py:base as builder | ||
|
||
LABEL com.abhinavsingh.name="abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.title="proxy.py" \ | ||
org.opencontainers.image.description="⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • \ | ||
LABEL org.opencontainers.image.title="proxy.py" \ | ||
org.opencontainers.image.description="💫 Ngrok FRP Alternative • ⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • \ | ||
😈 TLS interception • 🔒 DNS-over-HTTPS • 🔥 Poor Man's VPN • ⏪ Reverse & ⏩ Forward • \ | ||
👮🏿 \"Proxy Server\" framework • 🌐 \"Web Server\" framework • ➵ ➶ ➷ ➠ \"PubSub\" framework • \ | ||
👷 \"Work\" acceptor & executor framework" \ | ||
org.opencontainers.url="https://github.com/abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.url="https://github.com/abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.source="https://github.com/abhinavsingh/proxy.py" \ | ||
com.abhinavsingh.docker.cmd="docker run -it --rm -p 8899:8899 abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.licenses="BSD-3-Clause" \ | ||
org.opencontainers.image.authors="Abhinav Singh <[email protected]>" \ | ||
org.opencontainers.image.vendor="Abhinav Singh" | ||
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" | ||
|
||
ENV PYTHONUNBUFFERED 1 | ||
ENV PYTHONDONTWRITEBYTECODE 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
FROM python:3.11-alpine | ||
FROM python:3.12-alpine | ||
|
||
LABEL com.abhinavsingh.name="abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.title="proxy.py" \ | ||
org.opencontainers.image.description="⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • \ | ||
LABEL org.opencontainers.image.title="proxy.py" \ | ||
org.opencontainers.image.description="💫 Ngrok FRP Alternative • ⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • \ | ||
😈 TLS interception • 🔒 DNS-over-HTTPS • 🔥 Poor Man's VPN • ⏪ Reverse & ⏩ Forward • \ | ||
👮🏿 \"Proxy Server\" framework • 🌐 \"Web Server\" framework • ➵ ➶ ➷ ➠ \"PubSub\" framework • \ | ||
👷 \"Work\" acceptor & executor framework" \ | ||
org.opencontainers.url="https://github.com/abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.url="https://github.com/abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.source="https://github.com/abhinavsingh/proxy.py" \ | ||
com.abhinavsingh.docker.cmd="docker run -it --rm -p 8899:8899 abhinavsingh/proxy.py" \ | ||
org.opencontainers.image.licenses="BSD-3-Clause" \ | ||
org.opencontainers.image.authors="Abhinav Singh <[email protected]>" \ | ||
org.opencontainers.image.vendor="Abhinav Singh" | ||
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" | ||
|
||
ENV PYTHONUNBUFFERED 1 | ||
ENV PYTHONDONTWRITEBYTECODE 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters