mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-12 01:57:18 +10:00
9 lines
279 B
Docker
9 lines
279 B
Docker
FROM alpine
|
|
ARG TARGETARCH
|
|
ARG TARGETVARIANT
|
|
LABEL maintainer="nekohasekai <contact-git@sekai.icu>"
|
|
RUN set -ex \
|
|
&& apk add --no-cache --upgrade bash tzdata ca-certificates nftables
|
|
COPY sing-box-${TARGETARCH}${TARGETVARIANT} /usr/local/bin/sing-box
|
|
ENTRYPOINT ["sing-box"]
|