From 6c14e0cc04416b9bcde557ddfbfa4e0429d26019 Mon Sep 17 00:00:00 2001 From: degfw <51269503+degfw@users.noreply.github.com> Date: Mon, 8 Jan 2024 06:35:59 +0000 Subject: [PATCH] misc: installing tor in the docker image Signed-off-by: degfw <51269503+degfw@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 52adff51..9d2ab169 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ FROM --platform=$TARGETPLATFORM alpine AS dist LABEL maintainer="nekohasekai " RUN set -ex \ && apk upgrade \ - && apk add bash tzdata ca-certificates \ + && apk add bash tzdata ca-certificates tor \ && rm -rf /var/cache/apk/* COPY --from=builder /go/bin/sing-box /usr/local/bin/sing-box ENTRYPOINT ["sing-box"]