We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad3036 commit f149a96Copy full SHA for f149a96
1 file changed
docker/alpine/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM alpine:3.16
+FROM alpine:3.19
2
LABEL maintainer="kev <noreply@datageek.info>, Sah <contact@leesah.name>, vndroid <waveworkshop@outlook.com>"
3
4
ENV SERVER_ADDR=0.0.0.0
@@ -18,6 +18,7 @@ RUN set -x \
18
cmake \
19
c-ares-dev \
20
libcap \
21
+ libcap-setcap \
22
libev-dev \
23
libsodium-dev \
24
linux-headers \
@@ -31,7 +32,7 @@ RUN set -x \
31
32
&& make install \
33
&& cd /usr/local/bin \
34
&& ls /usr/local/bin/ss-* | xargs -n1 setcap cap_net_bind_service+ep \
- && strip $(ls /usr/local/bin | grep -Ev 'ss-nat') \
35
+ && strip $(ls /usr/local/bin | grep -Ev 'ss-nat' | grep -Ev 'ss-setup') \
36
&& apk del .build-deps \
37
# Runtime dependencies setup
38
&& apk add --no-cache \
0 commit comments