mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-29 20:04:05 +02:00
Merge pull request #1769 from akrigator/tor_http_proxy
[TOR] Init build
This commit is contained in:
@@ -26,3 +26,11 @@
|
|||||||
## 5.0.2-3 (13-02-2025)
|
## 5.0.2-3 (13-02-2025)
|
||||||
|
|
||||||
- Fix network for http tunel
|
- Fix network for http tunel
|
||||||
|
|
||||||
|
## 5.0.2-4 (13-02-2025)
|
||||||
|
|
||||||
|
- Init build procedure
|
||||||
|
|
||||||
|
## 5.0.2-5 (13-02-2025)
|
||||||
|
|
||||||
|
- Init build procedure
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
ARG BUILD_FROM
|
ARG BUILD_FROM=ghcr.io/hassio-addons/base:17.1.4
|
||||||
# hadolint ignore=DL3006
|
# hadolint ignore=DL3006
|
||||||
FROM ${BUILD_FROM}
|
FROM ${BUILD_FROM}
|
||||||
|
|
||||||
@@ -11,13 +11,13 @@ COPY rootfs /
|
|||||||
# Setup base
|
# Setup base
|
||||||
RUN \
|
RUN \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
coreutils=9.5-r2 \
|
coreutils=9.5-r2 \
|
||||||
openssl=3.3.3-r0 \
|
openssl=3.3.3-r0 \
|
||||||
tor=0.4.8.14-r1 \
|
tor=0.4.8.14-r1 \
|
||||||
go=1.23.6-r0 \
|
go=1.23.6-r0 \
|
||||||
git=2.47.2-r0 \
|
git=2.47.2-r0 \
|
||||||
ca-certificates=20241121-r1 \
|
ca-certificates=20241121-r1 \
|
||||||
libcap=2.71-r0
|
libcap=2.71-r0
|
||||||
|
|
||||||
# Download pluggable-transports sources
|
# Download pluggable-transports sources
|
||||||
WORKDIR /go
|
WORKDIR /go
|
||||||
@@ -25,8 +25,8 @@ ARG OBFS_VERSION=obfs4proxy-0.0.14
|
|||||||
ARG SNOWFLAKE_VERSION=v2.10.1
|
ARG SNOWFLAKE_VERSION=v2.10.1
|
||||||
ARG WEBTUNNEL_VERSION=v0.0.2
|
ARG WEBTUNNEL_VERSION=v0.0.2
|
||||||
RUN git clone -b ${OBFS_VERSION} --single-branch --depth 1 https://github.com/Yawning/obfs4.git \
|
RUN git clone -b ${OBFS_VERSION} --single-branch --depth 1 https://github.com/Yawning/obfs4.git \
|
||||||
&& git clone -b ${SNOWFLAKE_VERSION} --single-branch --depth 1 https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git \
|
&& git clone -b ${SNOWFLAKE_VERSION} --single-branch --depth 1 https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git \
|
||||||
&& git clone -b ${WEBTUNNEL_VERSION} --single-branch --depth 1 https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/webtunnel.git
|
&& git clone -b ${WEBTUNNEL_VERSION} --single-branch --depth 1 https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/webtunnel.git
|
||||||
|
|
||||||
# Build obfs4proxy
|
# Build obfs4proxy
|
||||||
WORKDIR /go/obfs4
|
WORKDIR /go/obfs4
|
||||||
@@ -56,11 +56,11 @@ HEALTHCHECK \
|
|||||||
--interval=60s \
|
--interval=60s \
|
||||||
--timeout=30s \
|
--timeout=30s \
|
||||||
CMD curl \
|
CMD curl \
|
||||||
--silent \
|
--silent \
|
||||||
--location \
|
--location \
|
||||||
--socks5-hostname localhost:9050 \
|
--socks5-hostname localhost:9050 \
|
||||||
https://check.torproject.org/?lang=en_US \
|
https://check.torproject.org/?lang=en_US \
|
||||||
| grep -qm1 Congratulations
|
| grep -qm1 Congratulations
|
||||||
|
|
||||||
# Build arguments
|
# Build arguments
|
||||||
ARG BUILD_ARCH
|
ARG BUILD_ARCH
|
||||||
|
|||||||
@@ -51,5 +51,5 @@
|
|||||||
"slug": "tor",
|
"slug": "tor",
|
||||||
"startup": "services",
|
"startup": "services",
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||||
"version": "5.0.2-1"
|
"version": "5.0.2-5"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user