mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-19 15:21:50 +02:00
92
tor/Dockerfile
Normal file
92
tor/Dockerfile
Normal file
@@ -0,0 +1,92 @@
|
||||
ARG BUILD_FROM=ghcr.io/hassio-addons/base:16.2.0
|
||||
# hadolint ignore=DL3006
|
||||
FROM ${BUILD_FROM}
|
||||
|
||||
# Set shell
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
# Copy root filesystem
|
||||
COPY rootfs /
|
||||
|
||||
# Setup base
|
||||
RUN \
|
||||
apk add --no-cache \
|
||||
coreutils=9.5-r1 \
|
||||
openssl=3.3.1-r3 \
|
||||
tor=0.4.8.12-r0 \
|
||||
go=1.22.5-r0 \
|
||||
git=2.45.2-r0 \
|
||||
ca-certificates=20240705-r0 \
|
||||
libcap=2.70-r0
|
||||
|
||||
# Download pluggable-transports sources
|
||||
WORKDIR /go
|
||||
ARG OBFS_VERSION=obfs4proxy-0.0.14
|
||||
ARG SNOWFLAKE_VERSION=v2.9.2
|
||||
ARG WEBTUNNEL_VERSION=e64b1b3562f3ab50d06141ecd513a21ec74fe8c6
|
||||
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 --single-branch --depth 1 https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/webtunnel.git
|
||||
|
||||
# Build obfs4proxy
|
||||
WORKDIR /go/obfs4
|
||||
RUN go build -o /usr/local/bin/obfs4proxy ./obfs4proxy
|
||||
|
||||
# Build snowflake
|
||||
WORKDIR /go/snowflake/client
|
||||
RUN go get \
|
||||
&& go build -o /usr/local/bin/snowflake
|
||||
|
||||
# Build webtunnel
|
||||
WORKDIR /go/webtunnel/main/client
|
||||
RUN git reset --hard ${WEBTUNNEL_VERSION} \
|
||||
&& go build -ldflags="-s -w" -o /usr/local/bin/webtunnel
|
||||
|
||||
# Clean up after build
|
||||
WORKDIR /
|
||||
RUN rm -rf /go
|
||||
|
||||
# Give transports clients the capability to bind privileged port.
|
||||
RUN setcap 'cap_net_bind_service=+ep' /usr/local/bin/obfs4proxy \
|
||||
&& setcap 'cap_net_bind_service=+ep' /usr/local/bin/snowflake \
|
||||
&& setcap 'cap_net_bind_service=+ep' /usr/local/bin/webtunnel
|
||||
|
||||
HEALTHCHECK \
|
||||
--start-period=60m \
|
||||
--interval=60s \
|
||||
--timeout=30s \
|
||||
CMD curl \
|
||||
--silent \
|
||||
--location \
|
||||
--socks5-hostname localhost:9050 \
|
||||
https://check.torproject.org/?lang=en_US \
|
||||
| grep -qm1 Congratulations
|
||||
|
||||
# Build arguments
|
||||
ARG BUILD_ARCH
|
||||
ARG BUILD_DATE
|
||||
ARG BUILD_DESCRIPTION
|
||||
ARG BUILD_NAME
|
||||
ARG BUILD_REF
|
||||
ARG BUILD_REPOSITORY
|
||||
ARG BUILD_VERSION
|
||||
|
||||
# Labels
|
||||
LABEL \
|
||||
io.hass.name="${BUILD_NAME}" \
|
||||
io.hass.description="${BUILD_DESCRIPTION}" \
|
||||
io.hass.arch="${BUILD_ARCH}" \
|
||||
io.hass.type="addon" \
|
||||
io.hass.version=${BUILD_VERSION} \
|
||||
maintainer="Franck Nijhof <frenck@addons.community>" \
|
||||
org.opencontainers.image.title="${BUILD_NAME}" \
|
||||
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
|
||||
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
|
||||
org.opencontainers.image.authors="Franck Nijhof <frenck@addons.community>" \
|
||||
org.opencontainers.image.licenses="MIT" \
|
||||
org.opencontainers.image.url="https://addons.community" \
|
||||
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
||||
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
|
||||
org.opencontainers.image.created=${BUILD_DATE} \
|
||||
org.opencontainers.image.revision=${BUILD_REF} \
|
||||
org.opencontainers.image.version=${BUILD_VERSION}
|
||||
Reference in New Issue
Block a user