-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·74 lines (67 loc) · 2.75 KB
/
Copy pathDockerfile
File metadata and controls
executable file
·74 lines (67 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
ARG BUILD_FROM=ghcr.io/hassio-addons/base:20.2.0
# hadolint ignore=DL3006
FROM ${BUILD_FROM}
# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Copy root filesystem
COPY rootfs /
ARG OBFS_VERSION=obfs4proxy-0.0.14
ARG SNOWFLAKE_VERSION=v2.10.1
ARG WEBTUNNEL_VERSION=v0.0.2
# Setup base
RUN \
apk add --no-cache \
coreutils=9.8-r1 \
openssl=3.5.6-r0 \
tor=0.4.9.8-r0 \
&& apk add --no-cache --virtual .build-dependencies \
go=1.25.9-r0 \
git=2.52.0-r0 \
&& git clone -b "${OBFS_VERSION}" --single-branch --depth 1 \
https://github.com/Yawning/obfs4.git /tmp/obfs4 \
&& go build -C /tmp/obfs4 -ldflags '-extldflags "-static" -s -w' -o /usr/local/bin/obfs4proxy ./obfs4proxy \
&& git clone -b "${SNOWFLAKE_VERSION}" --single-branch --depth 1 \
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git /tmp/snowflake \
&& go build -C /tmp/snowflake/client -ldflags '-extldflags "-static" -s -w' -o /usr/local/bin/snowflake \
&& git clone -b "${WEBTUNNEL_VERSION}" --single-branch --depth 1 \
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/webtunnel.git /tmp/webtunnel \
&& go build -C /tmp/webtunnel/main/client -ldflags='-extldflags "-static" -s -w' -o /usr/local/bin/webtunnel \
&& apk del --no-cache --purge .build-dependencies \
&& rm -rf /tmp/*
HEALTHCHECK \
--start-period=15m \
--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 <opensource@frenck.dev>" \
org.opencontainers.image.title="${BUILD_NAME}" \
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
org.opencontainers.image.vendor="Home Assistant Community Apps" \
org.opencontainers.image.authors="Franck Nijhof <opensource@frenck.dev>" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.url="https://frenck.dev/home-assistant-apps" \
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}